body {
    background-color: white;
    max-width: 100%;
    margin: 0;
}

* {
    box-sizing: border-box;
}

.wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 65vw;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.column-form {
    flex-basis: 50%;
    padding: 8px;
}

.column-bild {
    flex-basis: 50%;
    padding: 8px;

}

.picture {
    max-width: 100%;
    min-width: 100px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.form-col {
    flex-basis: 49%;
}

input, button {
    height: 48px;
    margin-bottom: 8px;
    border-radius: 4px;
    font-size: 22px;
    font-family: proxima-nova, sans-serif;
    padding: 8px;
    margin-bottom: 24px;
}

input[type="radio"], input[type="checkbox"] {
    height: auto;
}

input[type="text"] {
    width: 100%;
}

input[type="email"], input[type="tel"] {
    width: 100%;
}

input[type="date"], input[type="time"] {
    width: 100%;
}

input[type="submit"] {
    background-color: #cd1719;
    border: 0;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    margin: 24px 0px;
    padding: 0px 16px;
}


input[type="submit"]:hover {
    background-color: #575F62;
}

#checker {
    background-color: #E7EAEC;
    border: 0;
    border-radius: 4px;
    color: #575F62;
    font-weight: bold;
    margin: 24px 0px;
    padding: 0px 16px;
}

#checker:hover {
    background-color: #575F62;
    color: white;
}

label {
    font-size: 24px;
}

@media only screen and (max-width: 1200px) {
    .row {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

@media only screen and (max-width: 650px) {
    .wrapper {
        margin-left: auto;
        margin-right: auto;
        max-width: 90vw;
    }

    .form-row {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: stretch;
    }

    .form-col {
        flex-basis: 100%;
    }
}