/* von Formatierung von http://code.tutsplus.com/tutorials/build-a-neat-html5-powered-contact-form--net-20426 und PHP-Script von http://www.1ngo.de/web/formmailer.html */
#contact-form {
    background-color:#a4c28f;
    width:465px;
    padding:20px;
    margin: 50px auto;    
    border: 6px solid #a4c28f;
    -moz-border-radius:15px;
    -webkit-border-radius:15px;
    border-radius:15px;
    position:relative;
}
 
#contact-form input, 
#contact-form select, 
#contact-form textarea, 
#contact-form label {
    font-size:15px;
    margin-bottom:2px;
}
 
#contact-form input, 
#contact-form select, 
#contact-form textarea {
    width:450px;
    border: 1px solid #d9e8cf;
    margin-bottom:20px;
    padding:4px;
}
 
#contact-form input:focus, 
#contact-form select:focus, 
#contact-form textarea:focus {
    border: 1px solid #c1d9b0;
    background-color: #eff5eb;
}
 
#contact-form textarea {
    height:150px;
    resize: none;
}
 
#contact-form label {
    display:block;
}
 
#contact-form .required {
    font-weight:bold;
    color:#f00;    
}
 
#contact-form #submit-button {
    width: 100px;
    background-color:#333;
    color:#fff;
    border:none;
    display:block;
    float:right;
    margin-bottom:0px;
    margin-right:6px;
    background-color:#3b7e1a;
    -moz-border-radius:8px;
}
 
#contact-form #submit-button:hover {
    background-color: #bddea6;
}
 
#contact-form #submit-button:active {
    position:relative;
    top:1px;
}
 
#Fehler {
    border:solid 1px #e58e8e;
    padding:10px;
    margin:25px 0px;
    -webkit-border-radius:8px;
    -moz-border-radius:8px;
    border-radius:8px;
    background:#ffe6e6 url(../img/cancel_48.png) no-repeat 405px center;
}
 
#OK {
    border:solid 1px #83d186;
    padding:25px 10px;
    margin:25px 0px;
    -webkit-border-radius:8px;
    -moz-border-radius:8px;
    border-radius:8px;
    background:#d3edd3 url(../img/accepted_48.png) no-repeat 405px center;
    font-weight:bold;
}
 
#req-field-desc {
    font-style:italic;
}
 
/* Remove box shadow firefox, chrome and opera put around required fields. It looks rubbish. */
input:required, textarea:required {
    -moz-box-shadow:none;
    -webkit-box-shadow:none;
    -o-box-shadow:none;
    box-shadow:none;
}
