.auth-container {
    background-color: #fdfcf8;
    /* Warm off-white background */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    font-family: inherit;
}

.auth-card {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    text-align: center;
}

.auth-header {
    margin-bottom: 2.5rem;
}

.auth-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.auth-subtitle {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.form-group input {
    padding: 0.875rem 1rem;
    border: 1.5px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-group input:focus {
    border-color: #000;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #555;
}

.forgot-password {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-btn {
    background-color: #000;
    color: #333333;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.auth-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.auth-footer p {
    color: #666;
    font-size: 0.9rem;
}

.toggle-btn {
    background: none;
    border: none;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
    text-decoration: underline;
    margin-left: 0.25rem;
}

.toggle-btn:hover {
    color: #333;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1rem 0;
    color: #888;
    font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}

.auth-divider:not(:empty)::before {
    margin-right: 1rem;
}

.auth-divider:not(:empty)::after {
    margin-left: 1rem;
}

.guest-btn {
    background-color: #333333;
    color: #555;
    padding: 0.875rem;
    border: 1.5px solid #eee;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.guest-btn:hover {
    background-color: #f9f9f9;
    border-color: #ddd;
    color: #333;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 2rem;
        box-shadow: none;
        background: transparent;
        border: none;
    }

    .auth-container {
        padding: 2rem 1rem;
        background: #fff;
        /* White background for mobile auth */
    }
}