
.column {
    float: left;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 50%;
}
.row1:after {
    content: "";
    display: table;
    clear: both;
}
.row2:after {
    content: "";
    display: table;
    clear: both;
}
.image img {
    width: 500px;
    margin-left: 0px;
    height: auto;
}
form input, form button, form textarea {
    width: 150%;
    margin-top: 1rem;
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 4px;
    border: 1px solid #ccc;
}
form button {
    width: 160%;
    background-color: #0029A3;
    color: white;
    border: none;
    cursor: pointer;
}
form button:hover {
    background-color: blue;
}

@media screen and (max-width: 500px) {
    .column {
        width: 100%;
    }
    .image img {
            max-width: 300px;
            height: auto;
    }
    form input, form button, form textarea {
        width: 90%;
        margin-top: 1rem;
        padding: 0.75rem;
        font-size: 1rem;
        border-radius: 4px;
        border: 1px solid #ccc;
    }
    form button {
        width: 100%;
        background-color: #0029A3;
        color: white;
        border: none;
        cursor: pointer;
    }
    form button:hover {
        background-color: blue;
    }
}