.inputtext{
display: block;
height: 30px;
width: 100%;
padding: 15px;
font-size: 14px;
line-height: 1.428571429;
color: rgb(0, 0, 0);
vertical-align: middle;
background-color: rgba(244, 244, 244, 0.77);
border: 1px solid rgb(228, 228, 228);
border-radius: 4px;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.inputtext:focus {
border-color: rgb(183, 183, 183);
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(0, 0, 0, 0.6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 3px rgba(76, 76, 76, 0.6);
}

.inputtextarea{
display: block;
height: 350px;
width: 100%;
padding: 15px;
font-size: 14px;
line-height: 1.428571429;
color: rgb(0, 0, 0);
vertical-align: middle;
background-color: rgba(244, 244, 244, 0.77);
border: 1px solid rgb(228, 228, 228);
border-radius: 4px;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.inputtextarea:focus {
border-color: rgb(183, 183, 183);
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(0, 0, 0, 0.6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 3px rgba(76, 76, 76, 0.6);
}
.warning{
background-color: rgb(242, 222, 222);
padding: 15px;
border-radius: 5px;
margin-top: 15px;
max-width: 525px;
}