body {
    font-family: 'Noto Sans', sans-serif;
    height: 100vh;
    margin: 0;
    display: flex;
    background-color: #f5f5f5;
}
.left-side {
    background: url('../images/background.jfif') no-repeat center center;
    background-size: cover;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-container {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    max-width: 300px;
}
.logo-container img {
    width: 100%;
    height: auto;
}
.right-side {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.login-container {
    background-color: rgba(0, 0, 128, 0.1);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    color: white;
    text-align: center;
    margin-top: 25%;
}
.footer {
    text-align: center;
    margin-top: 20px;
    color: #4a4a4a;
    background-color: #f5f5f5;
}