/* static/css/pages/login.css */

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.login-page {
    margin-top: 200px;
    margin-bottom: 40px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Optional: add a subtle fade-in animation */
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-page .card {
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.25) !important;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: box-shadow 0.3s;
    z-index: 2;
}

.login-page .card:hover {
    box-shadow: 0 16px 48px 0 rgba(31, 38, 135, 0.35) !important;
}

.login-page .card-header {
    border-radius: 18px 18px 0 0;
    background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
    color: #fff;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.login-page .form-group label {
    font-weight: 500;
    color: #182848;
}

.login-page .form-control {
    border-radius: 8px;
    border: 1px solid #c3cfe2;
    background: #f7fafd;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-size: 1.05rem;
}

.login-page .form-control:focus {
    border-color: #4b6cb7;
    box-shadow: 0 0 0 2px rgba(75, 108, 183, 0.15);
    background: #fff;
}

.login-page .btn-primary {
    background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
    border: none;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(75, 108, 183, 0.10);
    transition: background 0.2s, box-shadow 0.2s;
}

.login-page .btn-primary:hover {
    background: linear-gradient(90deg, #182848 0%, #4b6cb7 100%);
    box-shadow: 0 4px 16px rgba(75, 108, 183, 0.18);
}

.login-page .alert-info {
    border-radius: 8px;
    background: #e3f0ff;
    color: #2b4a77;
    border: 1px solid #b6d4fe;
}

@media (max-width: 991.98px) {
    .login-page {
        margin-top: 100px;
        margin-bottom: 20px;
    }
    .login-page .card {
        border-radius: 12px;
    }
    .login-page .card-header {
        border-radius: 12px 12px 0 0;
        font-size: 1.1rem;
    }
} 