html, body {
    width: 100%;
    height: 100%;
}

.login-wrap {
    width: 100%;
    height: 100%;
    background: url('../images/bg-login.png') no-repeat center;
    background-size: cover;
}

.form-control {
    background-color: #ffffff;
    border: 1px solid #999999;
    border-radius: 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    color: #333333;
    display: block;
    font-size: 14px;
    height: 34px;
    line-height: 1.42857;
    padding: 6px 12px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 100%;
}

.login-logo {
    width: 150px;
    margin: 0 auto;
    padding: 10px 0;
}

.login-box {
    width: 400px;
    margin: 0;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.login-logo, .register-logo {
    font-size: 35px;
    text-align: center;
    margin-bottom: 5px;
    font-weight: 300;
}

.login-box-msg {
    margin: 0;
    text-align: center;
    padding: 0 20px 60px 20px;
    color: #ffffff;
}

.profile-pic {
    display: block;
    text-align: center;
    padding: 15px 0 40px 0;
    font-size: 70px;
}

.login-box-body {
    background: rgba(255, 255, 255, .9);
    padding: 50px 30px;
    border-top: 0;
    border-radius: 25px;
    color: #666;
}

.has-feedback {
    position: relative;
}

.form-group {
    margin-bottom: 15px;
}

.has-feedback .form-control {
    padding-right: 42.5px;
}

.login-box-body .form-control-feedback, .register-box-body .form-control-feedback {
    color: #777;
}

.form-control-feedback {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none;
}

.checkbox, .radio {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.checkbox label, .radio label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    cursor: pointer;
}

.input-box {
    border-radius: 25px;
    padding-left: 36px;
}

.sub-box {
    text-align: center;
    padding: 10px;
}

.sub-btn {
    background: #ff7400; /* Old browsers */
    background: -moz-linear-gradient(top, #ff7400 23%, #ed3f00 66%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ff7400 23%, #ed3f00 66%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ff7400 23%, #ed3f00 66%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff7400', endColorstr='#ed3f00', GradientType=0); /* IE6-9 */
    color: #ffffff;
    border-radius: 25px;
    padding: 9px 25px;
    transition: .2s;
}

.sub-btn:hover {
    background: #ff7400; /* Old browsers */
    background: -moz-linear-gradient(top, #ff7400 23%, #ed9918 66%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ff7400 23%, #ed9918 66%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ff7400 23%, #ed9918 66%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    transition: .2s;

}

.remember-me {
    font-weight: normal;
}

.forg-link {
    text-align: right;

}

.forg-link a {
    color: #343434;

}

.forg-link a:hover {
    color: #ff7400;

}

@media only screen and (max-width: 600px) {

    .login-wrap {
        width: 100%;
        height: auto;
        padding: 40px 20px 100px 20px;
    }

    .login-box {
        width: auto;
        top: auto;
        left: auto;
        transform: none;
    }

}

@media only screen and (max-height: 635px) {

    .login-wrap {
        width: 100%;
        height: auto;
        padding: 40px 20px 100px 20px;
    }

    .login-box {
        width: auto;
        top: auto;
        left: auto;
        transform: none;
    }

}
