
.formcontainer {
    font-family: Tahoma, Arial, sans-serif;
    color: white;
}

table.formcontainer {
    border-spacing:0;
    border: 0px solid black;
}

td.formcontainer, th.formcontainer  {
    font-family: Tahoma, Arial, sans-serif;
    color: white;
    padding: 10 0 10 0;    
}

td.formcontainerinput, th.formcontainerinput  {
    font-family: Tahoma, Arial, sans-serif;
    color: #E0E0E0;
    padding: 10 10 10 10;    
    
}

h3.formcontainer, p.formcontainer  {
    font-family: Tahoma, Arial, sans-serif;
    color: white;    
}


form {
    background-color: #555;
    display: block;
    padding: 15px;

}
input[type=text], input[type=password], input[type=submit], textarea {
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 3px;
    padding: 5;  
}
input[type=text], input[type=password], select, textarea {
    background-color: rgb(246, 254, 231);
    border-color: rgb(180, 207, 94);
    border-style: solid;
    border-width: 1px;
    font-size: 16px;
    margin-right: 10px;
    width: 200px;
}

input[type=text], input[type=password], select,  {
    height: 25px;
}
input[type=submit]{
    cursor: pointer;
    font-size: 16px;
    height: 35px;
    padding: 5px;
    background-color: #404040;
    color: white;
    border-radius: 3px;    
    
}
input.wrong {
    border-color: rgb(180, 207, 94);
    background-color: rgb(255, 183, 183);
}
input.correct {
    border-color: rgb(180, 207, 94);
    background-color: rgb(220, 251, 164);
}
#pass_result {
    float: right;
}