*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';
}

.wrap{
    width: 100%;
    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 gray;
    border-radius: 10px;
    padding: 0 10px;
    outline: none;
    margin-bottom: 30px;
}

form textarea{
    width: 400px;
    height: 200px;
    border: none;
    box-shadow: 0 0 3px gray;
    border-radius: 10px;
    padding: 10px;
    outline: none;
    margin-bottom: 30px;
    resize: none;
}
form button{
     padding: 10px 20px;
     border: none;
     border-radius: 10px;
     background-color: rgb(32, 32, 32);
    color: white;
    cursor: pointer;
    font-weight: 500;
}

form button i{
    margin-left: 10px;
}