/****************************************
 *
 * Common styles for left panel of the auth flow
 *
 ****************************************/

.auth-headline {
    font-family: 'Cinzel', serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.04em;
    line-height: 1.25;
    margin-bottom: 0;
    margin-top: 0;
}

.auth-headline em {
    color: var(--gold-light);
    font-style: normal;
}

.auth-headline em.teal {
    color: var(--teal);
}

.auth-body {
    font-size: 18px;
    color: var(--mist);
    line-height: 1.7;
    font-style: italic;
    max-width: 340px;
    margin: 0;
}

/****************************************
 *
 * Features list
 *
 ****************************************/

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--mist);
}

.auth-feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.auth-feature-dot.ember {
    background: var(--ember);
    box-shadow: 0 0 6px rgba(200, 88, 26, 0.6);
}

.auth-feature-dot.teal {
    background: var(--teal);
    box-shadow: 0 0 6px rgba(74, 173, 168, 0.6);
}

.auth-feature-dot.gold {
    background: var(--gold);
    box-shadow: 0 0 6px rgba(201, 148, 58, 0.6);
}

/****************************************
 *
 * Steps list
 *
 ****************************************/

.auth-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.step-number {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 1px solid rgba(201, 148, 58, 0.35);
    background: rgba(201, 148, 58, 0.07);
    color: var(--gold);
    margin-top: 1px;
}

.step-title {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--cream);
    margin-bottom: 3px;
    text-transform: uppercase;
}

.step-desc {
    font-size: 13px;
    color: var(--mist);
    font-style: italic;
    line-height: 1.5;
}

.step-number.teal-step {
    border-color: rgba(74, 173, 168, 0.35);
    background: rgba(74, 173, 168, 0.07);
    color: var(--teal);
}

.step-number.ember-step {
    border-color: rgba(200, 88, 26, 0.35);
    background: rgba(200, 88, 26, 0.07);
    color: var(--ember-bright);
}

/****************************************
 *
 * Right panel
 *
 ****************************************/

.auth-panel {
    width: auto !important;
    max-width: 380px;
    margin: auto;
}

.auth-panel .page-subtitle {
    margin-bottom: 0;
}

.auth-panel .button-primary {
    font-size: 12px;
    padding: 13px 26px;
}

.signup-prompt {
    font-size: 14px;
    color: var(--mist-dim);
    margin: 0;
}

.signup-link {
    color: var(--gold);
    text-decoration: none;
    font-style: italic;
    transition: color 0.2s;
    border-bottom: 1px solid rgba(201, 148, 58, 0.25);
    padding-bottom: 1px;
}

.signup-link:hover {
    color: var(--gold-light);
    border-bottom-color: rgba(201, 148, 58, 0.5);
}

.password-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.forgot-link {
    font-size: 12px;
    color: var(--mist-dim);
    font-style: italic;
    text-decoration: none;
    transition: color 0.2s;
    border-bottom: 1px solid transparent;
    margin-bottom: 8px;
    cursor: pointer;
}

.forgot-link:hover {
    color: var(--gold);
    border-bottom-color: rgba(201, 148, 58, 0.35);
}

.resend-row {
    text-align: center;
    font-size: 14px;
    color: var(--mist-dim);
    font-style: italic;
}

.resend-link {
    color: var(--mist-dim);
    text-decoration: none;
    transition: color 0.2s;
    border-bottom: 1px solid rgba(80, 85, 114, 0.3);
    padding-bottom: 1px;
    cursor: pointer;
}

.resend-link:hover {
    color: var(--mist);
}

/****************************************
 *
 * Password strength meter
 *
 ****************************************/

.strength-bar {
    margin-top: 7px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.strength-segments {
    display: flex;
    gap: 3px;
    flex: 1;
}

.strength-seg {
    flex: 1;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.3s;
}

.strength-label {
    font-size: 11px;
    color: var(--mist-dim);
    font-style: italic;
    white-space: nowrap;
}

.strength-seg.weak {
    background: var(--ember);
}

.strength-seg.medium {
    background: var(--gold);
}

.strength-seg.high {
    background: var(--teal);
}

.strength-seg.strong {
    background: var(--green);
}