body {
    background-color: #f2f2f2;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif
}

.container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.form-side {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2f2f2;
}

.image-side {
    flex: 0 0 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.image-side {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-container {
    width: 90%;
    max-width: 400px;
}

h1 {
    color: #333;
    text-align: center;
    font-size: 42px;
    margin-bottom: 25px;
}

label {
    color: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    width: 100%;
    background-color: #333;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: teal;
}

.login-link {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.login-link a {
    color: real;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}