body{
background: #7F7FD5;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #91EAE4, #86A8E7, #7F7FD5);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #91EAE4, #86A8E7, #7F7FD5); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */


    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
 
    
}

label{
    justify-content: center;
}

form{
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 40%;
    height: 80%;
    padding: 20px;
    box-shadow: rgba(0,0,0,0.8) 0px 0px 50px;
    border-radius: 10px;
}

input{
    width: 500px;
    border: none;
    resize: none;
    outline: none;
    transition: all 30ms;
    border-bottom: 1px solid rgba(0,0,0,0.2);
}

input:focus, textarea:focus{
    border-bottom-color: #F3904F;
}

button{
    
    border: none;
    color:white;
    outline: none;
    background: #7F7FD5; 
    padding: 25px;
    width: 420px;
    border-radius: 2px;
    margin: 40px;
    box-shadow: rgba(0,0,0,0.7) 0px 0px 5px;
    cursor: pointer;
    transition: all 30ms;
}

button:hover{
    background-color: #86A8E7;
    transform: scale(1.05);
    box-shadow: rgba(0,0,0,0.9) 0px 0px 5px;
}

h5{
    font-size: 10px;
    text-align: center;
}


