/* Use tables to create a horizontal form in the style of bootstrap's form-horizontal */
.form-table td,
.form-table th{
    padding-bottom:6px;
    font-size:12px;
}
.form-table td:not(:last-child),
.form-table th:not(:last-child){
    padding-right:15px;
}

.form-table label,
.form-table tbody th{
    margin-bottom: 0;
    display: inline-block;
    max-width: 100%;
    font-weight: 700;
}

.form-table input[type='text'], 
.form-table input[type='password'], 
.form-table select, 
.form-table textarea {
    padding: 3px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
    display: block;
    width: 100%;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.form-table input[type='text'], 
.form-table input[type='password'], 
.form-table select {
    height: 23px;
}

.form-table input[type='text']:disabled, 
.form-table input[type='password']:disabled, 
.form-table select:disabled, 
.form-table textarea:disabled {
    cursor:not-allowed;
    background-color: #eee;
    opacity: 1;
}

.form-table button, 
.form-table .btn{
    padding: 4px 8px;
    font-size:12px;
}
.form-table .btn-link{
    padding:0;
}

.form-table label{
    color:#00234c;
}

.form-table fieldset{
 
    margin:auto;

    margin-bottom:20px;
    padding:0px 0 15px 0;
    border-radius:0;
    text-align:left;
}
/*
.form-table legend{
    border:none;
    margin:0;
    padding:5px 0;
    margin-bottom:15px;

    position:relative;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: rgb(66,30,0);
    background-color:white;
    border-bottom:1px solid rgb(200,200,225);
}
*/
.form-table legend a{
    font-size:12px;
    font-weight:normal;
}

.form-table thead th{	
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color:rgb(66,30,0);
    text-decoration:underline;
}


@media (max-width: 450px) {
    .form-table fieldset{
        margin-left:0;
        border-left:none;
        padding:0 0 15px 0;
    }
    
    .form-table legend{
        margin-left:-0px;
        border-bottom:1px solid rgb(200,200,225);
    }
    
}
