/*----Form------*/
.forms{
}
.forms ul li{
    margin:15px 0;
    position: relative;
}
.forms input[type=text],
.forms input[type=password],
.forms textarea{
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 15px 15px;
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    color: #7a7a7a;
    background: #FFF;
    border: 2px solid #f7f7f7;
}
.forms input::-webkit-input-placeholder,
.forms textarea::-webkit-input-placeholder {
    color: #7a7a7a;
    opacity: 1;
}
.forms input:-moz-placeholder,
.forms textarea:-moz-placeholder {
    color: #7a7a7a;
    opacity: 1;
}
.forms input:-ms-input-placeholder,
.forms textarea:-ms-input-placeholder {
    color: #7a7a7a;
    opacity: 1;
}
.forms input[type=submit],
.forms input[type=button]{
    width: 100%;
    border: 0px;
    -webkit-border-radius:  5px;
    -moz-border-radius:5px;
    border-radius: 5px;
    padding: 15px;
    margin-top: 20px;
    font-size: 17px;
    line-height: 30px;
    font-weight: 700;
    color: #FFF;
    background-color: #77a24b;
}
.forms input[type=submit]:hover,
.forms input[type=button]:hover{
    color: #FFF;
    background-color: #f5821f;
}
.forms label.checkbox span.Text,
.forms label.radio span.Text {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #7a7a7a;
}
.forms label.checkbox span.Text a,
.forms label.radio span.Text a {
    color: #7a7a7a;
}
.forms label.checkbox span.Text a:hover,
.forms label.radio span.Text a:hover {
    text-decoration: underline;
}
/*----Form------*/
@media only screen and (max-width: 768px) {
    .forms ul li {
        margin: 5px 0;
    }
    .forms input[type=text],
    .forms input[type=password],
    .forms textarea {
        padding: 10px 15px;
        line-height: 24px;
    }
    .forms label.checkbox span.Text, .forms label.radio span.Text {
        font-size: 10px;
        line-height: 14px;
    }
    .forms input[type=submit], .forms input[type=button] {
        padding: 10px;
        margin-top: 0;
        font-size: 14px;
        line-height: 24px;
    }
}