.form-control-name {

    width: 700px;
    height: 30px;
    border-radius: 10px;
    outline: none;
}

.form-control-email {

    width: 700px;
    height: 30px;
    border-radius: 10px;
    outline: none;
}

.form-control-message {

    width: 700px;
    height: 100px;
    border-radius: 10px;
    outline: none;

}

.sendForm {
    margin-top: .4em;
    height: 60px;
    width: 100px;
    border-radius: 12px;
    background-color: #6E2DAA;
    color: black;
    font-size: 1.5em;
    letter-spacing: 2px;
    outline: none;

}

.sendForm:hover {
    cursor: pointer;
    text-decoration: underline;
}

.sendFormNewButton{
    margin-top: .4em;
    padding: 1% 1.2%;
    border-radius: 12px;
    background-color: #6E2DAA;
    color: black;
    font-size: 1.2em;
    letter-spacing: 2px;
}

.sendFormNewButton:hover {
    transition: 300ms ;
    background: #4d1483;
    color: #fff;
    cursor: pointer;
}


.form-control-name:focus {
    background-color: rgb(226, 223, 226);
}

.form-control-email:focus {
    background-color: rgb(226, 223, 226);
}

.form-control-message:focus {
    background-color: rgb(226, 223, 226);
}

@media only screen and (max-width: 806px) {

    .form-control-name {
        width: 100%;
    }

    .form-control-email {
        width: 100%;

    }


    .form-control-message {
        width: 100%;
    }
}