.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: var(--bg);
}

.auth-card {
    background: white;
    border-radius: var(--radius);
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.auth-back {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.auth-back:hover {
    color: var(--primary);
}

.auth-logo {
    text-align: center;
    margin-bottom: 1.25rem;
}

.auth-card h1 {
    text-align: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1.75rem;
}

.auth-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.auth-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.auth-footer a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.alert {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.alert-error {
    background: #FED7D7;
    color: #9B2C2C;
    border: 1px solid #FC8181;
}

.alert-success {
    background: #C6F6D5;
    color: #22543D;
    border: 1px solid #68D391;
}
