body{
    background: #F3904F;  
    background: -webkit-linear-gradient(to right, #3B4371, #F3904F);  
    background: linear-gradient(to right, #3B4371, #F3904F); 
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    display: flex;
    width: 100%;
    height: 100vh;
    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,textarea{
    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: #3B4371; 
    padding: 10px;
    width: 200px;
    border-radius: 2px;
    margin: 25px;
    box-shadow: rgba(0,0,0,0.7) 0px 0px 5px;
    cursor: pointer;
    transition: all 30ms;
}

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

