/* Auth pages — uses Bootstrap vars from site.css */

.auth-section {
    min-height: calc(100vh - 104px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background-color: var(--bs-gray-100);
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--bs-white);
    border-radius: var(--bs-border-radius-lg);
    border: 1px solid var(--bs-gray-200);
    box-shadow: 0 6px 24px rgba(44, 62, 80, 0.08);
    padding: 2rem 2rem 1.75rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-emoji {
    display: block;
    font-size: 2.25rem;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.auth-title {
    color: var(--bs-secondary);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 0 0.25rem;
}

.auth-subtitle {
    color: var(--bs-gray-600);
    font-size: 0.9rem;
    margin: 0;
}

.auth-field {
    margin-bottom: 1rem;
}

.auth-field .form-floating > .form-control {
    border-radius: var(--bs-border-radius);
    border-color: var(--bs-gray-300);
    background: var(--bs-gray-100);
}

.auth-field .form-floating > .form-control:focus {
    border-color: var(--bs-primary);
    background: var(--bs-white);
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.2);
}

.auth-field .form-floating > label {
    color: var(--bs-gray-600);
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.auth-check .form-check-label {
    color: var(--bs-gray-600);
    font-size: 0.875rem;
}

.auth-link {
    color: var(--bs-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
}

.auth-link:hover {
    color: var(--bs-link-hover-color);
}

.auth-btn {
    width: 100%;
    padding: 0.65rem 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    border-radius: var(--bs-border-radius);
}

.auth-footer {
    text-align: center;
}

.auth-footer span {
    color: var(--bs-gray-600);
    font-size: 0.875rem;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 1.5rem;
    }
}
