﻿body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #2C3E50;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #ABB2B9;
}

.login-container {
    background-color: #FFFFFF;
    display: flex;
    width: 700px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.logo-section {
    background-color: #00338D;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
}

    .logo-section img {
        width: 100px;
    }


.form-section {
    padding: 40px 50px;
    flex-grow: 1;
    background-color: #FFFFFF;
    box-sizing: border-box;
}

    .form-section h1 {
        color: #333333;
        font-size: 22px;
        margin-top: 0;
        margin-bottom: 10px;
        font-weight: normal;
    }

    .form-section .access-note {
        font-size: 12px;
        color: #555555;
        margin-bottom: 25px;
    }

footer {
    text-align: center;
    font-size: 12px;
    margin-top: 30px;
    width: 700px;
    line-height: 1.6;
}

    footer p {
        margin: 5px 0;
    }

    footer .footer-links a {
        color: #ABB2B9;
        text-decoration: none;
    }

        footer .footer-links a:hover {
            text-decoration: underline;
        }
