﻿
body {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
}

.login-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    padding: 40px;
    max-width: 400px;
    width: 100%;
    animation: fadeIn 0.8s ease-in-out;
}

.login-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

    .login-logo img {
        height: 150px;
        margin-bottom: 10px;
    }

    .login-logo h4 {
        font-weight: 600;
        color: #2a5298;
        margin-bottom: 0;
    }

.form-label {
    font-weight: 500;
    color: #333;
}

.btn-primary {
    background-color: #2a5298;
    border: none;
    border-radius: 8px;
    width: 100%;
    padding: 10px;
    font-weight: 500;
}

    .btn-primary:hover {
        background-color: #1e3c72;
    }

footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: #f0f0f0;
    font-size: 14px;
}

@@keyframes fadeIn { /* ← double @@ here */
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


