charset "utf-8";
/* CSS Document */

* {
    margin: 0;
    padding: 0;
}

html,body{
    height: 100%;    
}

body {
    width: 100%;
    font-family: Tahoma;
    font-size: 12px;
    line-height: 18px;
    color: #474747;
    background: #fff;
}

h1{
	font-size:28px;
    text-align:center;
    line-height: 22px;
}

#wrap{
    display: block;
    margin-top: 35px;
}

#title{
    text-align: center;
    display: block;
    font-weight: bold;    
}


#contact_form{
    display: block;
    width: 400px;
    margin:35px auto 0 auto;
    padding:16px 16px 10px 16px;
    color:#333;
    background-color: #eee;
    border-radius: 10px;
}

#form_title{
    display: block;
    text-align: center;
    color:green;
    font-size:22px;
    font-weight: bold;
}

#form{
    display: block;
    box-sizing: border-box;
    margin: 16px 0 0 0;
}

label{
    font-size: 14px;
}

#form .Input{
    box-sizing: border-box;
    height:30px;
    width: 100%;
    border:1px solid #bababa;
    padding-left:5px; 
    margin-bottom:7px;
    border-radius: 4px;
    font-size: 16px;
}

#form #name{
    height:1px;
    display:none;
}

#message{    
    box-sizing: border-box;
    width: 100%;
    height:100px;
    border-radius: 5px;
    border:1px solid #bababa;
    padding-left: 5px;
    font-size: 16px;
    font-family: Arial;
}

#submit{
    border: 0;
    background-color: #169E00;
    margin: 5px 0 0 0;
    padding: 9px 24px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: white;
    border-radius: 5px;
}

#submit:hover{
    background-color: #16BA00;
}

#message-sent{
    text-align: center;
    padding: 24px 0;
    width: 100%;
    font-size: 20px;    
    line-height: 1.5;
}

@media screen and (max-width: 460px) {
#contact_form{
    box-sizing: border-box;
    width: 100%;
    padding:16px 12px 12px 12px;
    border-radius: 0;
}

}



