input, textarea{
    width: 30%;
    height: 40px;
    background: white;
    border-radius: 5px;
    padding: 0px 6px;
}

textarea{
    height: 120px;
    padding-top: 5px;
}

input[type="submit"]{
    background: #971d35;
    color: white;
}

input[type="submit"]:hover{
    background: white;
    color: #971d35;
    transition: 0.5s;
}

form div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin: 10px 0px;
}

select{
    width: 30%;
    height: 30px;

    border: 2px solid white;
    border-radius: 5px;
    padding-left: 4px;
}

@media screen and (max-width: 700px) {
    input, textarea{
        width: 90%;
    }
}