/* Simple layout using Flexbox */
.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
}

.image {
    width: 40%;
}

.image img {
    width: 100%;
}

.form {
    width: 50%;
}

.form label {
    display: block;
    margin: 10px 0 5px;
}

.form input,
.form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid blue;
    border-radius: 4px;
}

.form input[type="submit"] {
    width: auto;
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.form input[type="submit"]:hover {
    background-color: green;
}
