html, body {
    background: transparent url(../img/bg.png) repeat fixed;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

#loader-box {
    filter: alpha(opacity=0);
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    background-color: #FFF;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

#loader-box.in {
    filter: alpha(opacity=60);
    opacity: .6;
}

#loader-box img {
    width: 160px;
    height: 34px;
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    margin: -12px 0 0 -80px;
}

hr { 
    border: 0;
    height: 2px;
    background: #333;
    background-image: linear-gradient(to right, #ccc, #333, #ccc);
}

.jumbotron {
    background-color: transparent;
    margin-bottom: 0;
    text-align: left;
}

.jumbotron h1 {
    margin-top: 0;
    text-align: center;
}

.user-form-holder .form-group {
    margin-bottom: 20px;
}

.user-form-holder label { 
    font-size: 17px;
    font-weight: 700;
}

.user-form-holder .help-block-error, .user-form-holder .hint-block {
    font-size: 14px;
}

.user-form-holder .hint-block { font-style: italic; }

.user-form-holder .input-group-btn .btn {
    padding: 7px 12px;
}

.user-form-holder .fileinput-button {
    padding: 10px 16px;
    font-size: 18px;
    text-align: left;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    margin-bottom: 10px;
}