*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';

}
.wrap{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
h2{
    font-size: 40px;
    margin: 20px 0 ;
}
form{
    display: flex;
    flex-direction: column;
}
form input{
    width: 400px;
    height: 40px;
    border: none;
    box-shadow: 0 0 3px #999;
    border-radius: 10px;
    padding: 0 10px;
    outline: none;
    margin-bottom: 30px;


}
form textarea{
    width: 400px;
    height: 200px;
    border: none;
    box-shadow: 0 0 3px #999;
    border-radius: 10px;
    padding: 0 10px;
    outline: none;
    margin-bottom: 30px;
    resize: none;


}
form button{
    padding: 10px 20px;
    border: none;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    font-weight: 500;

}
form button i {
    margin-left: 10px;
}