.container{
    padding: 50px 0;
}


.content{
    width: 70%;
    margin: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.head{
    text-align: center;
    margin-bottom: 60px;
}
 h1{
    font-weight: 400;
    font-size: 40px;
 }
.head p{
    color: #7d7c7c;
    line-height: 35px;
    font-size: 18px;
}

form{
    background-color: #f2f3f5;
    box-shadow: 0px 1px 25px #d7d6d6;
    padding: 40px 35px;
}

.row{
    display: grid;
    grid-template-columns: auto auto ;
    column-gap: 28px;
    margin-bottom: 28px;
}
input, select, textarea{
    padding: 18px 23px;
    outline: none;
    border-radius: 3px;
    border: 1px solid #e6e9e9;
    font-size: 15px;
    box-sizing: border-box;

}

select{
  
}


textarea{
    width: 100%;
    resize: none;
    height: 150px;
    margin-bottom: 28px;
}

button{
    width: 100%;
    background-color: #2d3032;
    color: white;
    padding: 18px 23px;
    border-radius: 3px;
    font-size: 15px;
}

