﻿@import url('https://fonts.googleapis.com/css?family=Poppins|Roboto&display=swap');


html {
    min-height: 100%;
}

.login-body {
    line-height: 1;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    background: #fff;
}

* {
    margin: 0;
    padding: 0;
}

/*.login-body .main-header{
    display:none;
}*/

/*Login Page*/

/*.login-container {
    background: url(../images/newimages/login-bg.jpg) 100% 100%;
    height: 100%;
    position: absolute;
    width: 100%;
    background-size: cover;
}*/
.login_container {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 7% 0;
    padding: 15px;
    background-repeat: no-repeat;
    /*box-shadow: inset 0px 0px 400px 110px rgb(0 0 0 / 53%);
    background: url('../../images/compressed/BannerImageHome.jpg');*/

    background-position: center;
    background-size: cover;
    /*position: relative;*/
    z-index: 1;
}

.login_header {
    background-color: #d7d7d7 !important;
    height: 70px;
    box-shadow: 0 0 5px #ccc;
    margin-bottom: 5px;
}


/*.login_header a img {
    width: 200px;
}*/

.login_panel_sec {
    background: #ffffff;
    padding: 8px 5px 10px 5px;
}

.login_header-logo {
    height: 100%;
    width: 46%;
    text-align: left;
}

.login_header a {
    padding: 8px 15px;
    display: block;
}

    .login_header a img {
        max-width: 100%;
        height: 100%;
    }

.login_container::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #f9f9f9;
}

.wrap_login {
    /*width: 500px;*/
    border-radius: 2px;
    overflow: hidden;
    /*padding: 30px;*/
    background: #fff;
    /*box-shadow: 3px 2px 10px #bfbfbf;*/
}

.login_form {
    width: 100%;
}

.login_form_title {
    font-size: 20px;
    font-weight: bold;
    color: #dc231e;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.wrap_input {
    width: 100%;
    position: relative;
    border-bottom: 2px solid rgba(255,255,255,0.24);
    /*margin-bottom: 25px;*/
}

.validate-input {
    position: relative;
}


.loginmessage {
    display: block;
}

.input {
    font-size: 16px;
    color: #000000;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 45px;
    background: #f7f7f7;
    font-family: 'Poppins', sans-serif;
    padding: 0 5px 0 30px;
    border: 1px solid rgba(62, 62, 62, 0.0196078431372549);
}

    .input:focus {
        padding-left: 5px;
    }

        .input:focus + .focus-input::after {
            top: -22px;
            font-size: 18px;
        }

        .input:focus + .focus-input::before {
            width: 100%;
        }

.has-val.input + .focus-input::after {
    top: -22px;
    font-size: 18px;
}

.has-val.input + .focus-input::before {
    width: 100%;
}

.has-val.input {
    padding-left: 5px;
}

.focus-input {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

    .focus-input::before {
        content: "";
        display: block;
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
        background: #0672cd;
    }

.fa_user::after {
    font-family: FontAwesome;
    font-size: 22px;
    color: #394758;
    content: '\f007';
    display: block;
    width: 100%;
    position: absolute;
    top: 10px;
    left: 0px;
    padding-left: 5px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.fa_key::after {
    font-family: FontAwesome;
    font-size: 22px;
    color: #394758;
    content: '\f023';
    display: block;
    width: 100%;
    position: absolute;
    top: 10px;
    left: 0px;
    padding-left: 5px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.container_login_form {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.login_form_btn {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 45px;
    border-radius: 0px;
    background: #f44336;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

    .login_form_btn::before {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        border-radius: 0px;
        background-color: #f44336;
        top: 0;
        left: 0;
        opacity: 1;
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
    }

    .login_form_btn:hover {
        color: #fff;
        text-decoration: none;
    }

        .login_form_btn:hover:before {
            opacity: 0;
        }

.login_form_btn_home {
    background: #595959;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 45px;
    border-radius: 0px;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

a.back_to_home {
    float: right;
    padding: 22px 25px;
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #005dbf;
}

    a.back_to_home > img {
        width: 26px;
        vertical-align: bottom;
        margin-right: 10px;
    }

label, input, textarea {
    background: none;
    border: none;
    box-sizing: border-box;
    outline: none;
}

.forgot_ps_us {
    display: inline-block;
    margin-bottom: 30px;
    margin-top: 8px;
    font-size: 14px;
    color: #336aad;
    text-decoration: underline;
    font-weight: 500;
}

.alert-danger {
    padding: 10px;
    color: #f44336;
    line-height: 23px;
    font-weight: 600;
    background: transparent;
    display:inline;
}

.copy-right {
    text-align: center;
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.login_home-icon > img {
    width: 22px;
    vertical-align: bottom;
    margin-right: 10px;
}

@media (max-width:1440px) {
    .login_container {
        margin: 3% 0;
        /* margin: 0;*/
    }
}




.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

@media (min-width: 768px) {
    .col-md-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 992px) {
    .col-lg-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }
}


/*.login-wrap {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
    border-radius: 5px;
    -webkit-box-shadow: 0 10px 34px -15px rgb(0 0 0 / 24%);
    -moz-box-shadow: 0 10px 34px -15px rgba(0,0,0,.24);
    box-shadow: 0 10px 34px -15px rgb(0 0 0 / 24%);
}*/
.login-wrap-text {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
    border-radius: 5px;
    -webkit-box-shadow: 0 10px 34px -15px rgb(0 0 0 / 24%);
    -moz-box-shadow: 0 10px 34px -15px rgba(0,0,0,.24);
    box-shadow: 0 10px 34px -15px rgb(0 0 0 / 24%);
}

.signin-text {
    width: 50%;
    padding: 3rem;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    /* background: #E62E2D;*/
    box-shadow: inset 0px 0px 400px 500px rgb(0 0 0);
    background-image: url(../../../Content/images/login-bg-2.jpg) !important;
    background-color: #000;
    background-size: cover;
}

.signup-text {
    width: 50%;
    padding: 3rem;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    box-shadow: inset 0px 0px 400px 500px rgb(64 64 72 / 93%);
    background-image: url(../../../Content/images/compressed/BannerImageHome.jpg);
    text-align: center
}
/*.signup-text{
    width:100%;
    color:#fff;
}*/
.login-wrap-text-container {
    width: 100%;
    text-align: center;
    color: #fff;
}

    .login-wrap-text-container h2 {
        font-weight: 900;
        color: #fff;
        margin-bottom: 0.5rem;
        font-size: 2rem;
        line-height: 1.5;
    }

    .login-wrap-text-container p {
        margin-top: 0;
        margin-bottom: 10px;
    }

.signup_logo {
    margin-bottom: 1rem;
    text-align: center;
    display: block;
    width: 100%;
    border:none;
    padding: 10px;
}

.login-wrap {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0%;
    left: 15px;
    background: #fff;
    transition: all .5s;
    color: #303030;
}


.signup-button {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    font-size: 15px;
    padding: 5px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom:10px;
}

.signin-button {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    font-size: 15px;
    padding: 5px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom:10px;

}


.backtohome-button {
    border: 0px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 50px;
    display: block;
    font-weight: 400;
    line-height: 1.5;
}

    .signup-button:hover, .signin-button:hover, .backtohome-button:hover {
        color: #fff;
        text-decoration: none
    }

.signin-wrap, .signup-wrap {
    padding: 15px 30px 30px;
    transition: all .5s;
    background: #fff;
    width: 100%;
}


.signup-wrap {
    position: relative;
    z-index: 9999;
}

.login-wrap .signup-wrap {
    display: none;
}

.login-wrap.move .signup-wrap {
    transform: translateY(0%);
    margin-top: 20px;
    display: block;
}

.login-wrap-container {
    height: 400px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    overflow:hidden;
}

.new-copy-right {
    text-align: center;
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    background: #fff;
    position: relative;
    margin:15px 0px;
}

.backtohome-button img {
    width: 20px;
    vertical-align: top;
    margin-right: 10px
}



.login-wrap.move {
    right: 0%;
    left: auto;
}


    .login-wrap.move .signin-wrap {
        transform: translateY(0%);
        display: none;
    }

.signup_form_btn {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 45px;
    border-radius: 0px;
    background: #f44336;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

/*mobile responsive for login page*/
@media (max-width:600px) {

    .login-container {
        height: auto !important;
            }
    .login-wrap {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 43%;
        left: 0;
        bottom: 0;
    }

    .login-wrap-text {
        flex-direction: column-reverse;
        width: 100%;
        margin-top: -35px;
    }

    .signup-text, .signin-text {
        width: 100%;
        
    }
    .login-wrap-container {
        height: 100%;
    }
    }