/* Login Page Styling */
body { 
    background-color: #f8fafc;
}

.login-section {
    padding: 100px 0;
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
}

.login-card {
    background: white;
    border-radius: 24px;
    border: none;
    box-shadow: 0 20px 60px -15px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

.login-illustration {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.login-illustration::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: var(--auth-bg-image);
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.login-form-container {
    padding: 60px;
}

.form-control-custom {
    border-radius: 12px;
    padding: 14px 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control-custom:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
    outline: none;
}

.btn-theme-login {
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    padding: 16px;
    border: none;
    box-shadow: 0 10px 25px -5px rgba(225, 29, 72, 0.4);
    transition: all 0.3s;
}

.btn-theme-login:hover {
    background-color: #be123c;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(225, 29, 72, 0.5);
    color: white;
}

.btn-theme-login:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.divider {
    height: 1px;
    background: #e2e8f0;
    position: relative;
    margin: 40px 0;
}

.divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 0 15px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-card { animation: fadeInUp 0.6s ease-out; }

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .login-illustration { display: none; }
    .login-form-container { padding: 40px; }
}
