/**************************************************************
    LOGIN PAGE CSS
**************************************************************/
.login-page {
    height: 564px;
    background: url('/images/login/login-background.jpg') no-repeat 50% 0;
    border-top: 4px solid #8e8e8e;
    border-bottom: 4px solid #8e8e8e;
}

/**************************************************************
    login form CSS
**************************************************************/
.login-form {
    height: 556px;
    background-color: rgba(255, 255, 255, 0.5);
    -moz-box-shadow: 10px 0 15px -4px rgba(193, 193, 193, 1), -10px 0 15px -4px rgba(193, 193, 193, 1);
    -webkit-box-shadow: 10px 0 15px -4px rgba(193, 193, 193, 1), -10px 0 15px -4px rgba(193, 193, 193, 1);
    box-shadow: 10px 0 15px -4px rgba(193, 193, 193, 1), -10px 0 15px -4px rgba(193, 193, 193, 1);
}

.login-form .form-group {
    position: relative;
}

.login-form h2 {
    margin-top: 0;
    font-size: 28px;
    color: #8bc525;
    padding-top: 100px;
}

.login-form .instructions {
    font-size: 16px;
    font-weight: normal;
    color: #8e8e8e;
    margin-bottom: 25px;
}

.login-form form input {
    height: 38px;
    font-size: 16px;
}

.login-form button.login-button {
    width: 227px;
    height: 45px;
    font-size: 18px;
    margin-bottom: 5px;
}

.login-form button img {
    display: inline-block;
    margin-bottom: 3px;
}

.login-form .forgot-password {
    color: #c2c2c2;
}

.login-form .registered {
    padding: 83px 0;
    font-weight: normal;
}

.login-form .registered a {
    color: #5a5a5a;
}

.secoand-form {
    display: none;
}

/**************************************************************
    disable account
**************************************************************/
.disableAccount {
    width: 345px;
    background: #444;
    padding: 10px 20px 15px;
    margin: 25px auto 30px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    display: none;
}

.disableAccount:after {
    content: '';
    border-color: transparent;
    border-style: solid;
    position: absolute;
    width: 0;
    height: 0;
    border-right: 0px solid transparent;
    border-left: 40px solid transparent;
    border-top: 45px solid #444;
    left: 50px;
    -ms-transform: rotate(5deg); /* IE 9 */
    -webkit-transform: rotate(5deg); /* Chrome, Safari, Opera */
    transform: rotate(5deg);
}

.disableAccount .media-body {
    padding-right: 20px;
}

.disableAccount h4 {
    color: #f7941d;
    font-size: 14px;
    margin-bottom: 5px;
}

.disableAccount p {
    color: #fff;
    margin: 0;
}

.disableAccount a {
    color: #f7941d;
    text-decoration: underline;
}

.disableAccount .media-left {
    border-left: 1px solid #636363;
}

.disableAccount .question_mark {
    background: url('/images/login/question_mark.png') no-repeat;
    height: 44px;
    width: 12px;
    margin-left: 5px;
}

/**************************************************************
    validate style
**************************************************************/
/*user name validate*/
form input + .error label.customValidationUserNameOnFocus {
    right: -300px;
}

form input + .error label.customValidationUserNameSuccess {
    top: 5px;
    right: 290px;
}

/*password validate*/
form input + .error label.customValidationPasswordOnFocus {
    right: -220px;
}

form input + .error label.customValidationPasswordSuccess {
    top: 5px;
    right: 290px;
}

/*email validate*/
form input + .error label.customValidationEmailOnValidate, .error label.customValidationEmailOnFocus, form input {
    top: -10px;
}

form input + .error label.customValidationEmailOnFocus {
    right: -275px;
}

form input + .error label.customValidationEmailOnValidate {
    right: -275px;
}

form input + .error label.customValidationEmailSuccess {
    top: 5px;
    right: 405px;
}

/**************************************************************
    ARABIC RTL
**************************************************************/
.login-page {
    background: url('/images/login/login-background_AR.jpg') no-repeat 50% 0;
}

/**************************************************************
    media queries style
**************************************************************/
@media (max-width: 991px) {
    form input + .error label.customValidationUserNameSuccess {
        top: 5px;
        right: 330px;
    }

    form input + .error label.customValidationPasswordSuccess {
        top: 5px;
        right: 330px;
    }
}
