/* =====================================================================
   LivAsta Auth — sign up / complete profile (LIGHT theme)
   ===================================================================== */

.input-group-vertical {
    margin-bottom: 16px;
    overflow: hidden;
    background: var(--login-field);
    border: 1.5px solid var(--login-border);
    border-radius: 14px;
}

.input-group-vertical .login-input-wrapper {
    background: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1.5px solid var(--login-border);
}

.input-group-vertical .login-input-wrapper:last-child { border-bottom: none; }

.input-group-vertical .login-input-wrapper:focus-within {
    box-shadow: none;
    background: #fff;
}

.input-label-small {
    display: block;
    margin: 0 0 8px 4px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--login-muted);
}

.signup-info-text {
    margin: -6px 0 18px;
    font-size: 0.74rem;
    line-height: 1.45;
    color: var(--login-faint);
}

/* Visually-hidden native checkbox (drives .custom-checkbox via :checked) */
.auth-hidden-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.custom-checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0;
    cursor: pointer;
}

.custom-checkbox {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--login-border-strong);
    border-radius: 6px;
    background: #fff;
    transition: all 0.2s ease;
}

.custom-checkbox i {
    font-size: 0.7rem;
    color: #fff;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

input[type="checkbox"]:checked + .custom-checkbox {
    background: var(--login-primary);
    border-color: var(--login-primary);
}

input[type="checkbox"]:checked + .custom-checkbox i { opacity: 1; transform: scale(1); }

.checkbox-label { font-size: 0.84rem; line-height: 1.5; color: var(--login-text); }

.signup-terms {
    margin-bottom: 20px;
    font-size: 0.68rem;
    line-height: 1.6;
    color: var(--login-faint);
}

/* .login-link is defined in login.css and reused here */
