*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body{
    background: linear-gradient(to right, #795ce2, #012572);
    
}

form,div{
    width: 40%;
    min-width: 350px;
    background-color: aliceblue;
    border-radius: 5px;
    box-shadow: 0 15px 30px rgba(0, 0, 0,0.3);
    margin:100px auto;
    padding: 10px;

}

input, textarea{
    min-width: 320px;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
    border: 1px solid #c1c2c1;
    margin-top: 20px;
    height: 40px;
    padding-left: 10px;
    border-color:rgb(14, 4, 107);
    color:rgb(160, 103, 212);
}

textarea{
        height:200px;
        padding-top: 15px;
        color:rgb(33, 5, 110);
}


button{
    display: block;
    margin: 20px auto;
    height: 40px;
    min-width: 320px;
    border: none;
    border-radius: 5px;
    background-color: #1e0cbe;
    color:aliceblue;
    cursor: pointer;
}

button:hover{
opacity: 0.8;
}

button:active{
    opacity: 0.8;
    }
h1,p{
    text-align: center;
    margin: 10px;
    color: rgb(9, 9, 124);
}
