.form-wrapper {
    display: flex;
    flex-direction: column;
    padding-top: 70px;
}

.form-wrapper input[type="text"] {
    font-family: "Lato-Regular", sans-serif;
    font-size: 0.8vw;
    padding: 8px;
    height: 1vw;
    width: 20vw;
    margin-bottom: 24px;
}

select {
    width: 14vh;
    text-align: center;
    height: 2.4vh;
    line-height: 2vh;
    margin-bottom: 1.5vh;
}

option {
    padding: 3px;
    height: 6vh;
}

textarea {
    resize: none;
    overflow-y: scroll;
    width: 21vw;
    height: 10vh;
    margin-bottom: 1vh;
}

label {
    margin-bottom: 1vh;
}

button[type="submit"] {
    font-family: "Carmen SemiBold sans-serif";
    padding: 5px;
    width: 8vw;
    height: 3vh;
    background-color: #f5f2eb;
    border: 1px solid grey;
    cursor: pointer;
}

.select-row {
    justify-content: left;
    display: flex;
    flex-direction: row;
}
.select-group {
    display: flex;
    flex-direction: column;
    margin-right: 3vw;
}



