body {
    font-family: Arial, sans-serif;
    display: flex;
    height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    width: 100%;
}

.login-form {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background-color: #f7f7f7;
}

.login-form form {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.login-form form div.input-row{
    display: flex;
    flex-direction: row;
    width: 100%;
}

.login-form form div.input-column{
    display: flex;
    flex-direction: column;
    width: 50%;
}

.login-form h1 {
    text-wrap-mode: wrap;
    margin-bottom: 20px;
    font-size: 56px;
}

.login-form input[type="email"],
.login-form input[type="text"] {
    padding: 10px;
    margin-bottom: 10px;
    margin-right: 15%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-form button {
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    margin-right: 7.5%;
    margin-top: 30px;
    cursor: pointer;
}

.login-form button:hover {
    background-color: #0056b3;
}

.login-form p {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 15%;
}

.login-form p.error {
    color: red;
}

.login-form a {
    margin-top: 10px;
    color: #007BFF;
    text-decoration: none;
}

.illustration {
    flex: 1;
    background: url('https://via.placeholder.com/800x600') no-repeat center center;
    background-size: cover;
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .illustration {
        display: none;
    }

    .login-form {
        padding: 20px;
    }
    
    .input-row{
        flex-direction: column !important;
    }

    .input-column{
        width: 100% !important;
    }
}