Нет отступа между текстом и формой
Здравствуйте!
Нет отступа между строкой текста об отправке отзыва и формой
<div class="content">
<h1>Контакты</h1>
Отправьте ваш отзыв о портале КиноМонстр
<div class="send">
<form method="post" action="#" id="review">
<input type="text" name="review_name" placeholder="ваше имя">
<input type="text" name="review_name" placeholder="ваш email">
<textarea name="review_text"></textarea>
<input type="submit" value="отправить">
</form>
.reviews .review_name {
background-color: #7268ad;
color: white;
padding: 1%;
border-top-left-radius: 5px;/*задаём скругление для бордера, который сверху левый*/
border-top-right-radius: 5px;
}
.reviews .review_text {
padding-top: 2%;
padding-bottom: 2%;
padding-left: 2%;
}
/*задаём стили для формы заполнения комментариев*/
.send {
margin-bottom: 4%;
}
.send input[type="text"], textarea {
border: solid 1px #c3c3c3;
margin-bottom: 2%;
}
.send input[type="text"] {
width: 98%;
}
.send textarea {
width: 624px;
height: 200px;
}
.send input[type="submit"] {
background-color: #7268ad;
padding: 3%;
color: white;
border-radius: 5%;
}
.send_contact input[type="text"] {
width: 500px;
}
.send_contact textarea {
width: 516px;
}