/* Auth Page Styles */
.auth-container {
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

.auth-visual {
    background-image: url("../img/login-bg.c920f5534b0b.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

.auth-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(245, 84, 77, 0.4) 100%);
}

.auth-form-container {
    background-color: var(--background-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-card {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    border-radius: 1rem;
    background: #ffffff !important;
    /* Glassmorphism effect if we were on a colored bg, but here we are on white usually.
       Let's add a subtle shadow instead for depth. */
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    color: #e9ecef !important;
}

.auth-card label{
color: #000000 !important;
}

[data-bs-theme="dark"] .auth-card label{
color: #ffffff !important;
}

.auth-card input {
    border-color: #7a7a7a !important;
}

[data-bs-theme="dark"] .auth-card input {
    border-color: #495057 !important;
}


[data-bs-theme="dark"] .auth-card {
    background: #212529 !important;
}

.auth-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #F5544D !important;
    margin-bottom: 0.5rem;
}

.auth-logo .accent {
    color: var(--primary-color);
}

.auth-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-color);
    transform: scale(.85) translateY(-.5rem) translateX(.15rem);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(245, 84, 77, 0.25);
}

.btn-primary {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 84, 77, 0.3);
}

@media (max-width: 768px) {
    .auth-visual {
        display: none;
    }
}
