/* Auth Pages (Login / Register) */
.auth-card {
    max-width: 460px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.auth-card h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: .25rem;
    text-align: center;
}
.auth-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
    font-size: .95rem;
}
.auth-form__group {
    margin-bottom: 1rem;
}
.auth-form__group label {
    display: block;
    font-weight: 600;
    font-size: .875rem;
    margin-bottom: .35rem;
    color: #333;
}
.auth-form__group input {
    width: 100%;
    padding: .65rem .85rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: .95rem;
    transition: border-color .2s;
    box-sizing: border-box;
}
.auth-form__group input:focus {
    outline: none;
    border-color: var(--color-accent, #085E7D);
    box-shadow: 0 0 0 3px rgba(8,94,125,.1);
}
.auth-card .btn--full {
    width: 100%;
    margin-top: .75rem;
    padding: .75rem;
    font-size: 1rem;
}
.auth-footer {
    text-align: center;
    margin-top: 1.25rem;
    font-size: .9rem;
    color: #666;
}
.auth-footer a {
    color: var(--color-accent, #085E7D);
    font-weight: 600;
    text-decoration: none;
}
.auth-footer a:hover {
    text-decoration: underline;
}
.auth-card .pr-alert {
    margin-bottom: 1rem;
}

/* Auth tabs (used in wizard step 2) */
.auth-tabs {
    display: flex;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 1.5rem;
}
.auth-tab {
    flex: 1;
    text-align: center;
    padding: .75rem;
    font-weight: 600;
    font-size: .95rem;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color .2s, border-color .2s;
    background: none;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}
.auth-tab.active {
    color: var(--color-accent, #085E7D);
    border-bottom-color: var(--color-accent, #085E7D);
}
.auth-tab-content {
    display: none;
}
.auth-tab-content.active {
    display: block;
}

@media (max-width: 480px) {
    .auth-card {
        margin: 1rem;
        padding: 1.5rem;
    }
}
