@charset "utf-8";

/*============================================================================
  FORMS
============================================================================*/

.check-zone{ /*for clicking radio button by clicking the entire line*/
    cursor: pointer;
    padding: 7px 7px;
    background: none;
}
.check-zone:hover{ /*for clicking radio button by clicking the entire line*/
    background: #f2f2f2
}
.check-zone.selected{ /*for clicking radio button by clicking the entire line*/
    padding: 7px 7px;
    background: #ffc442;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
}


/* --------------------- form fields --------start---------------- */
input, select{
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    padding: 10px 10px;
    font-size: 20px;
    border: 1px solid #ccc;
    background: #fafafa;
    margin: 5px 0;
    vertical-align: middle;/*imp! this aligns the label and other text in the middle*/
}
input:hover, select:hover{
    border: 1px solid #aaa;
    background-color: #fff;
    -moz-box-shadow: 0 0 7px #ddd;
    -webkit-box-shadow: 0 0 7px #ddd;
    box-shadow: 0 0 7px #ddd;
}
select{
    width: 300px;
    max-width: 100%;
}

textarea{
    width: 300px;
    max-width: 100%;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    padding: 10px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    background: #fafafa;
    margin: 5px 0;
    vertical-align: middle;/*imp! this aligns the label and other text in the middle*/
}
textarea:hover{
    border: 1px solid #aaa;
    background-color: #fff;
    -moz-box-shadow: 0 0 7px #ddd;
    -webkit-box-shadow: 0 0 7px #ddd;
    box-shadow: 0 0 7px #ddd;
}
