html, body {
    height: 100%;
}

.login_bg {
    background: url("../images/login_bg.jpg") no-repeat fixed;
    background-size: cover;
}

.login_container {
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.50);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.50);
    box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.50);
    position: relative;
    background: #fff;
    /*margin-left: 120px;*/
    margin-left: 0px;
}

.login_bg .container-fluid {
    /*height: 100%;*/
}

.login_bg .row {
    height: calc(100% - 350px);
}

.login_logo {
    text-align: center;
    padding: 30px;
    border-bottom: solid 3px #f3f6f8;
}

.login_form {
    padding: 30px 30px 10px 30px;
}

    .login_form h1 {
        color: #29518a;
        text-transform: uppercase;
        margin: 0px 0px 30px 0px;
        text-align: center;
        font-size: 25px;
    }

    .login_form .form-group {
        position: relative;
    }

        .login_form .form-group .form-control {
            border: solid 3px #e2ecf6;
            font-size: 12px;
            padding: 10px;
            height: calc(2.5em + .75rem + 2px);
        }

            .login_form .form-group .form-control::-webkit-input-placeholder {
                color: #8f9cb4;
            }

            .login_form .form-group .form-control:-ms-input-placeholder {
                color: #8f9cb4;
            }

            .login_form .form-group .form-control::placeholder {
                color: #8f9cb4;
            }

.login_icon {
    position: absolute;
    right: 13px;
    top: 13px;
}

.login_form .form-group .form-control:focus {
    border: solid 1px #80bdff;
}

.login_btn {
    width: 100%;
    border-radius: 50px;
    padding: 10px 20px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    border: solid 3px #e23a0f;
    background: #e23a0f;
    font-weight: bold;
    font-size: 16px;
    outline: none;
    box-shadow: 0px 6px 5px #faded7;
}

    .login_btn:hover {
        color: #e23a0f;
        border: solid 3px #e23a0f;
        background: #fff;
    }

    .login_btn:focus {
        outline: none;
    }

.login_form a {
    color: #8f9cb4;
    font-size: 13px;
}

    .login_form a:hover {
        color: #e23a0f;
    }

.remember_me {
    color: #8f9cb4;
    font-size: 13px;
}

.login_contact_info {
    text-align: right;
    padding: 10px;
    color: #fff;
    font-size: 13px;
    position: absolute;
    top: 10px;
    right: 10px;
}

    .login_contact_info span:nth-child(1) {
        margin-right: 15px;
    }

.login_right {
}

.login_heading h1 {
    color: #fff;
    font-size: 60px;
    margin: 0px;
    text-align: center;
    padding-top: 66px;
}

.login_heading h2 {
    color: #fff;
    font-size: 25px;
    font-weight: 300;
    margin-bottom: 0px;
    text-align: center;
}

.devices_img {
    float: right;
    margin-right: 70px;
}



/*---------------------------- Switch ----------------*/

.switch {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 20px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 15px;
        width: 15px;
        left: 2px;
        bottom: 3px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #3fe244;
}

input:focus + .slider {
    box-shadow: 0 0 1px #3fe244;
}

input:checked + .slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }


/*---------------------------- Switch End ----------------*/


.modal-content {
    border-radius: 0px;
}

.modal_logo {
    text-align: center;
    padding: 40px;
}

.modal-footer {
    border: 0px;
    background: #f0f5fa;
}

.blue_modal_btn {
    border-radius: 3px;
    font-size: 14px;
    color: #fff;
    border: 0px;
    background: #29518a;
    padding: 6px 15px;
}

    .blue_modal_btn:hover {
        background: #1f4274;
    }

.grey_modal_btn {
    border-radius: 3px;
    font-size: 14px;
    color: #fff;
    border: 0px;
    background: #c2c2c2;
    padding: 6px 15px;
}

    .grey_modal_btn:hover {
        background: #aaa9a9;
    }

.reset_heading h1 {
    color: #29518a;
    text-transform: uppercase;
    margin: 0px 0px 8px 0px;
    text-align: center;
    font-weight: bold;
    font-size: 22px;
}

.reset_heading p {
    color: #e23a0f;
    margin: 0px;
    font-weight: bold;
    text-align: center;
    font-size: 12px;
}

.select_option {
    margin: 40px 20px;
    border: solid 2px #e2ecf6;
}

.select_method {
    padding: 15px;
}

    .select_method .custom-control-label {
        padding-left: 50px;
        position: relative;
        width: 100%;
    }

    .select_method .method_icon {
        position: absolute;
        left: 10px;
        top: 6px;
    }

    .select_method p {
        margin: 0px 0px 5px 0px;
        display: block;
        color: #8f9cb4;
        font-size: 13px;
    }

    .select_method b {
        color: #29518a;
        font-size: 12px;
    }

.select_option hr {
    border-top: solid 2px #e2ecf6;
    margin: 0px;
}

.custom-control-label::before {
    top: 0.65rem;
    width: 20px;
    height: 20px;
    border: #e7eff7 solid 2px;
    outline: none;
    box-shadow: none;
}

.custom-control-label::after {
    top: .65rem;
    width: 20px;
    height: 20px;
    outline: none;
    box-shadow: none;
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #ef4023;
    background-color: #fff;
    outline: none;
    box-shadow: none;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background: #ef4023;
    width: 8px;
    height: 8px;
    border-radius: 50px;
    margin-top: 6px;
    margin-left: 6px;
    outline: none;
    box-shadow: none;
}

.forgot_pass_form {
    margin: 60px 20px;
}

    .forgot_pass_form .form-control {
        font-size: 15px;
        border: solid 3px #e2ecf6;
        padding: 10px;
        height: auto;
        margin-bottom: 10px;
    }

.resend_text {
    font-size: 13px;
    color: #f13d1f;
    margin: 0px;
}

    .resend_text a {
        font-size: 13px;
        color: #f13d1f;
        text-decoration: underline;
    }

        .resend_text a:hover {
            color: #29518a;
        }

.password_reset_success {
    margin: 60px 20px;
    text-align: center;
    margin-top: 20px;
}

    .password_reset_success h1 {
        margin-top: 20px;
    }

.login_modal_box {
    display: block;
    text-align: center;
}

.forgot_modal .modal-body {
    padding: 0px;
}




@media (max-width: 1440px) {
    .login_bg .row {
        height: calc(100% - 350px);
    }
}

@media (max-width: 1198px) {
    .login_right h1 {
        font-size: 45px;
    }
}

@media (max-width: 991px) {
    .login_container {
        margin-left: 0px;
    }
}

@media (max-width: 500px) {
    .login_heading h1 {
        font-size: 33px;
    }
}
