body.login-page {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.login-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.login-header .icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
}

.login-header .icon-box i {
    font-size: 40px;
}

.login-header h3 {
    margin: 0;
    font-weight: 600;
    font-size: 28px;
}

.login-header p {
    margin: 5px 0 0;
    opacity: 0.9;
    font-size: 14px;
}

.login-body {
    padding: 40px 30px;
}

.form-floating {
    margin-bottom: 20px;
}

.login-page .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    height: 55px;
    transition: all 0.3s ease;
}

.login-page .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.login-page .form-floating label {
    padding: 16px 15px;
}

.btn-login {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.4);
    color: white;
}

.login-page .form-check {
    margin: 20px 0;
}

.login-page .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.forgot-password {
    text-align: center;
    margin-top: 20px;
}

.forgot-password a {
    color: #0d6efd;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.forgot-password a:hover {
    color: #0a58ca;
    text-decoration: underline;
}

.login-page .alert {
    border-radius: 10px;
    border: none;
    margin-bottom: 20px;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    z-index: 10;
}

.password-toggle:hover {
    color: #0d6efd;
}

.login-footer {
    text-align: center;
    margin-top: 30px;
}

.login-footer small {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 576px) {
    .login-container {
        padding: 15px;
    }
    
    .login-header {
        padding: 30px 20px;
    }
    
    .login-body {
        padding: 30px 20px;
    }
    
    .login-header h3 {
        font-size: 24px;
    }
    
    .login-header .icon-box {
        width: 70px;
        height: 70px;
    }
    
    .login-header .icon-box i {
        font-size: 35px;
    }
}