﻿body {
    background-color: #022858;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: 'Segoe UI', sans-serif;
}

.login-container {
    background-color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    max-width: 420px;
    width: 100%;
    animation: fadeIn 0.5s ease-in-out;
}

    .login-container h2 {
        text-align: center;
        color: #022858;
        margin-bottom: 1.5rem;
    }

.form-control {
    border-radius: 0.5rem;
}

.btn-login {
    background-color: #022858;
    color: #fff;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: 0.3s ease;
}

    .btn-login:hover {
        background-color: #001f4d;
    }

.form-check-label {
    font-size: 0.9rem;
}

.validation-summary-errors {
    color: red;
    margin-bottom: 1rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
