/*================================
        LOGIN CSS
=================================*/

.login-wrap {
    background: url(../images/login-bg.jpg) no-repeat 0 0;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: fixed;
}

.authentication-form-wrapper {
    width: 100%;
    background: #ffffff;
    max-width: 892px;
    min-height: 500px;
    padding: 24px;
    /* background: url(../../images/login-bg.jpg) no-repeat 0 0; */
    display: block;
    /* margin:50px auto; */
    border-radius: 10px;
    position: absolute;
    margin-left: -446px;
    margin-top: -250px;
    top: 50%;
    left: 50%;
    -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.25);
}

.authentication-form-wrapper .logo {
    margin: 0px 0;
    width: 200px;
}

.authentication-form-wrapper .logo img {
    max-width: 100%;
}

.authentication-form-wrapper h3 {
    font-size: 25px;
    color: #444;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin-top: 20px;
}

.authentication-form-wrapper .control-label {
    font-size: 14px;
    color: #444;
}

.authentication-form-wrapper .form-control {
    border: 1px solid #93a9c1;
    border-radius: 5px;
    padding-left: 40px;
}

.authentication-form-wrapper #email.form-control {
    background: url(../images/email.png) no-repeat 13px center;
    background-size: 18px;
}

.authentication-form-wrapper #password.form-control {
    background: url(../images/lock.png) no-repeat 13px center;
    background-size: 18px;
}

#forgot-link a {
    text-decoration: none;
    color: #5db812;
}

.authentication-form-wrapper .custom-checkbox {
    display: inline-block;
}

.authentication-form-wrapper .custom-checkbox label {
    font-size: 14px;
}

.login-wrap .btn-login {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    color: #5db812;
    background: none;
    padding: 6px 25px;
    border-radius: 25px;
    border: 2px solid #5db812;
    margin-bottom: 15px;
}

.login-wrap .btn-login:hover {
    background: #5db812;
    color: #ffffff;
}

.authentication-form-wrapper .alert {
    padding: 5px 15px;
    font-size: 12px;
}


/*welcomeText*/

.welcomeText h3 {
    font-size: 50px;
    line-height: 44px;
    text-transform: capitalize;
    color: #fff;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    letter-spacing: -1px;
}

.welcomeText p {
    width: 57%;
    color: #fff;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    float: right;
}


/*================================
        LOGIN CSS END
=================================*/


/* Smartphones (portrait and landscape) ----------- */

@media only screen and (max-width: 767px) {
    .login-wrap {
        /* background: #5db812; */
    }
    .authentication-form-wrapper {
        width: 95%;
        height: auto;
        margin: 50px auto;
        top: inherit;
        left: inherit;
        position: relative;
        border-radius: 5px;
        background: #ffffff;
    }
    .welcomeText {
        display: none;
    }
    .authentication-form-wrapper .logo {
        text-align: center;
    }
}