/*--------------------------------------------------
    [TRANSITION]
----------------------------------------------------*/
/* Cubic Bezier Transition */
/***
Login page
***/
/* logo page */
html {
    height: 100%;
}
.login {
    background: url(../images/login-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
}

.login .logo {
    margin: 60px auto 10px auto;
    padding: 15px;
    text-align: center;
}

.login .logo img {
    vertical-align: bottom;
    margin-right: 20px;
    margin-bottom: -10px;
}

.login .dropdown-lang {
    margin-top: -39px;
    font-size: 14px;
    display: inline-block;
}

.login .dropdown-lang > a {
    background: #62BC6F;
    border-radius: 25px;
    padding: 6px 0 2px 0 !important;
    display: inline-block;
    margin-top: 0;
    width: 32px;
    text-align: center;
}

.login .open > a {
    border-radius: 25px 25px 0 0;
}

.login .dropdown-lang a:hover {
    text-decoration: none;
}

.login .logo .dropdown-lang .dropdown-menu {
    min-width: inherit;
    box-shadow: none !important;
    background: #62BC6F;
    border-radius: 0 0 25px 25px;
    border: 0;
    margin-top: -2px;
    top: 90%;
}

.login .logo .dropdown-lang .dropdown-menu a {
    color: #fff;
    font-size: 13px;
    width: 32px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.login .logo .dropdown-lang .dropdown-menu a:hover {
    background: #62BC6F;
    border-radius: 0 0 25px 25px;
}

.login .content {
    width: 670px;
    height: 385px;
    *width: 560px/;
    *height: 325px;
    padding: 60px 55px 0px;
    border: #fff 1px solid;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -240.5px;
    margin-left: -335px;
    background-color: #fff; /* background color for IE */
    filter: alpha(opacity=60); /* opacity filter for IE */
    background-color: rgba(255, 255, 255, 0.6); /* for other browsers */
}

@media only screen and (max-height: 500px){
    .login .content {
        margin-top: 20px;
        top: 0%;
    }
}
.login .alert {
    padding: 10px 15px;
    padding: 10px 15px;
    position: absolute;
    top: -40px;
    left: 187px;
    right: 26px;
}

.login .form-group {
    margin-bottom: 25px;
}

.form-control {
    font-size: 14px;
    padding: 9px 12px;
    text-align: left;
    height: auto;
    color: #333;
    border-color: #fff;
    border-radius: 2px;
}

.form-control:focus {
    border: 1px solid #fff;
}

.has-error .form-control {
    border: 2px solid #ff8080;
    background: #ffefe7;
}

.has-success .form-control {
    border: 0;
}

.input-icon .fa {
    font-size: 18px;
    vertical-align: middle;
    margin-top: 14px;
}

.login .form-control::-webkit-input-placeholder { /* WebKit browsers */
    color: #999;
}

.login .form-control:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #999;
}

.login .form-control::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #999;
}

.login .form-control:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #999;
}

.login .has-error .form-control::-webkit-input-placeholder { /* WebKit browsers */
    color: #FE8282;
}

.login .has-error .form-control:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #FE8282;
}

.login .has-error .form-control::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #FE8282;
}

.login .has-error .form-control:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #FE8282;
}

.submitBtn {
    display: block;
    width: 100%;
    font-size: 14px;
    padding: 12px;
}

.login .content p {
    color: #222;
}

.login .content .login-form,
.login .content .forget-form {
    padding: 0px;
    margin: 0px;
}

.login .content .form-actions {
    background-color: #fff;
    clear: both;
    border: 0px;
    border-bottom: 1px solid #eee;
    padding: 0px 30px 25px 30px;
    margin-left: -30px;
    margin-right: -30px;
}

.login .content .form-actions .checkbox {
    margin-left: 0;
    padding-left: 0;
}

.login .content .forget-form .form-actions {
    border: 0;
    margin-bottom: 0;
    padding-bottom: 20px;
}

.login .content .register-form .form-actions {
    border: 0;
    margin-bottom: 0;
    padding-bottom: 0px;
}

.login .content .form-actions .btn {
    margin-top: 1px;
}

.login .content .create-account {
    border-top: 1px dotted #eee;
    padding-top: 10px;
    margin-top: 15px;
}

.login .content .create-account a {
    display: inline-block;
    margin-top: 5px;
}

@media (max-width: 480px) {
    /***
    Login page
    ***/
    .login .logo {
        margin-top: 10px;
    }

    .login .content {
        width: 280px;
        margin-left: -140px;
        padding-top: 30px;
        height: 420px;
    }

    .slogan {
        display: none
    }

    .loginLogo {
        width: 100px !important;
        float: none !important;
        padding: 0px !important;
        margin: 0px auto
    }

    .loginLogo img {
        width: 100%;
    }

    .loginForm {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .login .alert {
        position: initial;
    }

}

.loginLogo {
    width: 160px;
    float: left;
    padding-top: 25px;
}

.loginForm {
    width: 100%;
    padding-left: 187px;
    padding-top: 15px;
    padding-right: 26px;
    position: relative;
}

.btn-primary {
    background-color: #38b7ea;
    border-color: #38b7ea;
    color: #fff;
    text-transform: capitalize;
}