body {
    background: #34495e;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    font-family: Times new roman, serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
}

.login-container {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 2%;
    max-width: 350px;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 2;
}

h1 {
    color: #2c3e50;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 2%;
    margin: 2% 0;
    border: none;
    border-radius: 4px;
}

button {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 2% 4%;
    margin-top: 10px;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #2980b9;
}

.image-container {
    text-align: center;
    margin-top: 5%;
    order: 1;
}

.image-container img {
    max-width: 500px;
    width: 30%
    height: auto;
}
