/* ============================================
   Login Page Styles
   ============================================ */

body.login-page { 
    background: linear-gradient(135deg, #0B1F3A 0%, #142F5B 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-width: 450px;
    width: 100%;
}

.login-header {
    background: linear-gradient(135deg, #C62828 0%, #A02020 100%);
    padding: 30px;
    text-align: center;
}

.login-header h3 {
    color: white;
    margin: 0;
    font-weight: 600;
}

.login-header p {
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0 0;
}

.login-header img {
    height: 50px;
    margin-bottom: 10px;
}

.login-body {
    padding: 40px 30px;
}

.login-body .form-label {
    font-weight: 500;
    color: #333;
}

.login-body .form-control:focus {
    border-color: #C62828;
    box-shadow: 0 0 0 0.2rem rgba(198, 40, 40, 0.15);
}

.login-body .btn-primary {
    background: #C62828;
    border: none;
    padding: 12px;
    font-weight: 600;
    width: 100%;
}

.login-body .btn-primary:hover {
    background: #c62828;
}

.login-body .input-group-text {
    background-color: #f8f9fa;
    border-color: #ced4da;
}

.login-body .alert {
    border-radius: 8px;
}
