body {
    overflow-x: hidden !important;
}

#container {
    /* margin: 5% auto; */
    margin: 20px auto;
    width: 100%;
    background: #fefefe;
}

#sub-container {
    border: 1px solid #eee;
    width: 300px;
    vertical-align: top;
    display: inline-block;
}

#welcome {
    font-size:16px !important;
}

h3 {
    font-weight: normal;
    background: #df6800;
    color: #fff;
    font-size: 21px;
    padding: 10px;
    margin:0px;
}

a {
    margin: 10px;
    font-size: 16px;
    color: #eee;
}

input[type='text'], input[type='password'], select {
    border: none !important;
    padding: 10px;
    width: 90% !important;
    margin: 10px auto !important;
    background: #f1f1f1 !important;
    color: #111 !important;
    /*border-radius: 5px;*/
    font-size:16px !important;
    /*text-shadow: 1px 1px #fff;*/
}

input[type='submit'], .submit {
    display: block !important;
    /*margin-right: 10px;*/
    text-align:center;
    background: #666;
    margin: 5px 0px 0px 0px !important;
    font-size:14px !important;
    border-radius: 5px !important; 
    border:none !important;
    width: 99% !important;
    color:#fff !important;
    padding: 10px 0px !important;
    /*margin: 0px auto !important;*/
}

/*Shadow hover fields*/
input[type=text]:hover, input[type=password]:hover, select:hover {
    border-color:black;
    -moz-box-shadow: 0px 0px 6px #dfdfdf;
    -webkit-box-shadow: 0px 0px 6px #dfdfdf;
    box-shadow: 0px 0px 6px #dfdfdf;
}

input[type=text]:focus, input[type=password]:focus, select:focus {
    border-color: #f95133 !important;
    -moz-box-shadow: 0px 0px 6px #dfdfdf;
    -webkit-box-shadow: 0px 0px 6px #dfdfdf;
    box-shadow: 0px 0px 6px #dfdfdf;
}

/* Begin: Checkbox orange */
input[type=checkbox]{                  
    visibility: hidden;
    position: absolute;
}

input[type=checkbox] + label{
    font-family: Arial !important; 
    font-size: 15px;
    color: #777;
    cursor:pointer;
}

input[type=checkbox] + label:before{
    height: 20px;
    width: 20px;  
    content: " ";
    display:inline-block;
    vertical-align: middle;  
    border: 1px solid #ccc;
    border-radius: 10px;
    border-color: #777;
    margin-right: 5px; 
    margin-top: -2px;
}

input[type=checkbox] + label:before{
    border-radius:50%;
    width: 20px;
    height: 20px;
}

input[type=checkbox]:checked + label:before{   
    background: url("/content/images/icon-check.png");
    background-size: cover;
    border: 1px solid #F75E05;
    background-color: #df6800;                        
}

.no-select {
    -webkit-touch-callout: none; 
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* End: Checkbox orange */