﻿
.body {
    font: Barlow;
    font-family: Barlow;
    color: #222222;
}

.ContactForm {
    font-size: 14px;
    line-height: 21px;
    max-width: 480px;
    min-width: 250px;
    margin: 0 auto;
    width: 80%;
}

.ContactTitle{
    font-size: 36px;
    margin-top: 30px;
    margin-bottom:30px;
    font-weight: 800;
    line-height: 36px;
    text-align: center;
}

.short_inputText {
    width: 210px;
    color: #222222;
    background-color: #F0F0F0;
    padding: 8px 20px 8px 20px;
    line-height: 21px;
    font-size: 14px;
    border: 1px solid #F0F0F0;
    margin: 5px auto;
    font-weight: 400;
}

.inputText {
    font-weight: 400;
    width: 460px;
    color: #222222;
    background-color:#F0F0F0;
    padding: 8px 20px 8px 20px;
    line-height: 21px;
    font-size: 14px;
    border: 1px solid #F0F0F0;
    margin: 5px auto;
}

.short_inputText:hover {
    border: solid;
    border: 1px solid #FFB202;
}

.inputText:hover {
    border: solid;
    border: 1px solid #FFB202;
}

.sendButton {
    display: inline-block;
    margin: 10px 0 10px 0;
    width: 114px;
    height: 41px;
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: #FFB202;
    border: solid 1px #FFB202;
    gap: 10px;
    text-align: center;
    color: white;
    float: right;
}

.label {
    color: #868686;
}

@media screen and (max-width: 765px) {
    .inputText{
        width:340px;
    }
    .short_inputText{
        width:340px;
    }
    .ContactForm{
        width:90%;
    }
}