body.login-page {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-box {
    width: 100%;
    max-width: 400px;
    padding: 15px;
    margin: auto;
}

.card-login {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: none;
}

.card-login .card-header {
    background: #ffffff;
    border-bottom: none;
    padding: 30px 30px 10px;
    text-align: center;
}

.card-login .card-header img {
    max-height: 60px;
    margin-bottom: 10px;
}

.card-login .card-body {
    padding: 10px 30px 40px;
}

.card-login h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.card-login p {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.form-control {
    border-radius: 5px;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    background-color: #f9f9f9;
    transition: all 0.3s;
}

.form-control:focus {
    background-color: #fff;
    border-color: #2a5298;
    box-shadow: 0 0 0 0.2rem rgba(42, 82, 152, 0.25);
}

.btn-login {
    background: #2a5298;
    background: linear-gradient(to right, #1e3c72, #2a5298);
    border: none;
    border-radius: 5px;
    padding: 12px;
    font-weight: 600;
    width: 100%;
    margin-top: 10px;
    transition: all 0.3s;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.custom-control-label {
    font-size: 0.9rem;
    color: #666;
}

.login-footer {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}
