body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
}

header {
    background-color: #f2f2f2;
    padding: 20px;
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 900px;
    flex-wrap: wrap;
}

.logo-container img {
    margin: 20px;
    max-width: 100%;
    height: auto;
    width: 100px;
}

.login-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
    margin: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    height: 350px;
    overflow-y: auto;
}

form {
    text-align: center;
}

label {
    display: block;
    margin-bottom: 8px;
}

input {
    display: block;
    padding: 8px;
    margin: 0 auto 16px auto;
    border: 0px;
    border-bottom: 1px solid black;
    width: 100%;
    box-sizing: border-box;
}

button {
    display: block;
    padding: 10px;
    background-color: #1B396A;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    width: 100%;
}

h1 {
    text-align: center;
    color: #1B396A;
}

a {
    display: block;
    text-align: center;
    font-size: 14px;
    text-decoration: none;
    color: #1B396A;
    font-style: italic;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f0f0f0;
    padding: 20px;
    text-align: center;
}
