/*StyleHub - Register CSS*/
 
* { margin: 0; padding: 0; box-sizing: border-box; }
 
body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
}
 
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    background: #111111;
    background-image: linear-gradient(135deg, #111111 45%, #C8536E 46%, #E8829A 60%, #F0AABF 100%);
}
 
.login-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 460px;
    text-align: center;
}
 
.brand-mark {
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 5px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 14px;
}
 
.login-title {
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}
 
.login-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 26px;
}
 
/* FORM ROW - two fields side by side */
.form-row {
    display: flex;
    gap: 10px;
}
.form-row .input-pill { flex: 1; }
 
/* PILL INPUTS */
.input-pill {
    display: flex;
    align-items: center;
    background-color: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50px;
    padding: 4px;
    margin-bottom: 14px;
    backdrop-filter: blur(4px);
}
 
.input-pill input,
.input-pill select {
    flex: 1;
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 11px 16px;
    font-size: 13px;
    color: white;
    font-family: Arial, sans-serif;
}
 
.input-pill select { cursor: pointer; }
.input-pill select option { color: #111; }
 
.input-pill input::placeholder {
    color: rgba(255,255,255,0.55);
}
 
.pill-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: white;
    color: #C8536E;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 2px;
}
 
/* SECTION LABEL */
.section-label {
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin: 22px 4px 10px;
}
 
/* APPROVAL NOTE */
.approval-note {
    background-color: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    text-align: left;
    margin-bottom: 16px;
}
 
/* IMAGE UPLOAD (boutique registration) */
.image-upload-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: rgba(255,255,255,0.10);
    border: 1px dashed rgba(255,255,255,0.35);
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 18px;
    cursor: pointer;
    text-align: left;
}
 
.image-preview-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
 
.image-preview-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}
 
.image-upload-text {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}
 
.image-upload-text strong {
    display: block;
    color: white;
    font-size: 13px;
    margin-bottom: 2px;
}
 
/* SUBMIT BUTTON */
.btn-login {
    width: 100%;
    padding: 14px;
    background-color: white;
    color: #111111;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 6px;
}
 
.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}
 
/* SWITCH / BACK LINKS */
.switch-text {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    margin-top: 18px;
}
 
.switch-text a {
    color: white;
    text-decoration: underline;
    font-weight: 700;
}
 
.back-link {
    margin-top: 22px;
}
 
.back-link a {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-weight: 600;
}
 
.back-link a:hover { color: white; }
 
/* MOBILE */
@media (max-width: 480px) {
    .login-page { padding: 24px 16px; }
    .login-title { font-size: 24px; }
    .brand-mark { font-size: 15px; letter-spacing: 3px; margin-bottom: 10px; }
    .login-sub { font-size: 12px; margin-bottom: 20px; }
    .form-row { flex-direction: column; gap: 0; }
    .input-pill { margin-bottom: 12px; }
    .input-pill input, .input-pill select { padding: 10px 14px; font-size: 12px; }
    .pill-icon { width: 30px; height: 30px; }
    .btn-login { padding: 12px; font-size: 13px; }
    .switch-text { font-size: 12px; }
    .image-upload-box { padding: 12px; }
    .image-preview-circle { width: 46px; height: 46px; }
}
 
@media (max-width: 340px) {
    .login-title { font-size: 21px; }
    .brand-mark { letter-spacing: 2px; }
}
 