@import url(reset.css);

/*Контейнер с фоном и текстом*/
.main {
    width: 640px;
    height: 640px;
    margin: 0 auto;
    padding: 60px 0;
    background: #484d53;
    font-family: 'PT Sans', sans-serif;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
    text-align: center;
}


.main h3 {
    font-size: 60px;
    color: #fff;
}

.main h4 {
	margin-top: 20px;
    font-size: 28px;
    color: #fff;
}

.main p {
    font-size: 18px;
    color: #fff;
    line-height: 24px;
}

/* Стили формы */
#send {
    width: 475px;
    margin: 0 auto;
}

/*Стили полей для ввода*/
#sendName, #sendEmail, #sendTelephone, #sendComment {
    width: 100%;
    height: 73px;
    background: none;
    margin-top: 25px;
    border: 1px solid #fff;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    font-size: 24px;
}

#sendComment {
    width: 100%;
    height: 100px;
    background: none;
    margin-top: 15px;
    border: 1px solid #fff;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    font-size: 24px;
}

/*Стили полей при клике по ним*/
#sendName:focus, #sendEmail:focus, #sendTelephone:focus, #sendComment:focus {
    border: 1px solid #30ad64;
}
textarea {
  resize: none;
}

/*Стили текста, выводящегося в placeholder*/
::-webkit-input-placeholder {
    color: #efefef;
    font-family: 'PT Sans', sans-serif;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}

::-moz-placeholder  {
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}  /* Firefox 19+ */

:-moz-placeholder {
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}  /* Firefox 18- */

:-ms-input-placeholder {
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}

::placeholder {
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}

/*Стили для кнопки*/
.sendButton {
    margin-top: 25px;
    background: #30ad64;
    border: none;
    width: 100%;
    height: 73px;
    border-radius: 40px;
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'PT Sans', sans-serif;
    cursor: pointer;
/*    transition: .6s;*/
}
    .sendButton:hover {
        background: #d68c18; 
        /*    transition: .6s;*/
    }
        