body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: space-around;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    flex-direction: column;
    align-content: stretch;
    align-items: center;
}
.header {
    display: flex;
    align-items: center; 
    justify-content: center; 
    margin-top: 35px;
}
.header img {
    width: 150px; 
    margin-right: 20px; 
}
.header h1 {
    font-size: 36px;
    color: #333;
    margin-left: -15px;
    margin-top: 60px;
}
.login-container {
    display: flex;
    width: 800px;
    height: 600px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}
.image-container {
    flex: 1;
    overflow: hidden;
}
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.login-form-container {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}
.login-form {
    display: flex;
    flex-direction: column;
}
.login-form h2 {
    margin-bottom: 60px;
    margin-left: 140px;
}

.login-form label {
    margin-bottom: 5px;
    font-weight: bold;
}
.login-form input {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.login-form button {
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    cursor: pointer;
}
.login-form button:hover {
    background-color: #0056b3;
}

