form{
    display: inline-block;
    width: 100%;
}

    form > input,
    form > textarea{
        display: inline-block;
        width: 100%;
        padding: 5px 0px;
        float: left;
        margin-bottom: 30px;
        font-size: 16px;
        line-height: 24px;
        color: black;
        border: none;
        border-bottom: 1px solid black;

    }
    form > textarea{
        min-height: 100px;
        max-height: 320px;
        resize: vertical;
    }

    @media (min-width: 1100px){
            form >input{
                width: 45%;

            }
            form >input:nth-of-type(2){
                width: 45%;
                margin-left: 10%;
            }
    }

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 17px;
    line-height: 20px;
    background-color: #EA1E63;
    color: white;
    border-radius: 2px;
    box-shadow: 0 1px 2px grey;
    cursor: pointer;
    text-transform: capitalize;
    transition: all 0.2s;
}
.btn:hover{
    background-color:rgb(255, 14, 94);
    box-shadow: 0 1px 3px black;
}