#contact_form {
width: 570px;
}

#contact_form input[type=text]{
border:1px solid #000;
width:220px;
font-size:11px;
padding:5px;
background:#ebebeb;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
color:#000;
}
#contact_form textarea {
border:1px solid #000;
width:300px;
height:70px;
font-size:11px;
padding:3px;
background:#ebebeb;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
color:#000;

}

#contact_form input[type=text]:hover{
border:1px solid #000;
font-size:11px;
color:#000;
}

#contact_form textarea:hover {
border:1px solid #2cafca;
color:#000;
}

#contact_form #submit {
border:1px solid #000;
background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.21, rgb(63,64,63)),
    color-stop(0.55, rgb(3,3,3))
);
background-image: -moz-linear-gradient(
    center bottom,
    rgb(63,64,63) 21%,
    rgb(3,3,3) 55%
);

cursor:pointer;
padding:5px;
font-weight:bold;
color:#fff;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}


#contact_form #submit:hover {
border:1px solid #301d79;
background:#ccc;
color:#fff;
background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.22, rgb(110,110,110)),
    color-stop(0.71, rgb(20,20,20))
);
background-image: -moz-linear-gradient(
    center bottom,
    rgb(110,110,110) 22%,
    rgb(20,20,20) 71%
);
}
.error {
color:red;
padding-left:10px;
}

.xorisma_c {
border:1px dotted #999;
margin-top:10px;
margin-bottom:4px;

}


