﻿#login-ats {
    height: 100vh;
    background-repeat: no-repeat;
    /*background-position: center;*/
    background-size: cover;
    width: 100%;
}

.big-layout-login {
    width: 100%;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
}

.bg_login {
    position: absolute;
    right: 20%;
    top: 0;
}

.next_bg_login {
    position: absolute;
    width: 20%;
    right: 0;
    top: 0;
    background: #bd081c;
    height: 100vh;
}

.form-login-content {
    min-height: 250px;
    padding: 15px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    background: white;
    top: 70px;
    box-shadow: 0px 0px 3px 1px #e0e0e0;
    position: absolute;
    right: 10%;
    z-index: 1000;
    width: 20%;
    min-width: 400px;
}

    .form-login-content .form-group {
        margin-left: 0;
        margin-right: 0;
    }

.form-group {
    margin: unset;
    margin-bottom: 25px;
    position: relative;
}

.form-control {
    /* background-color: #ababab; */
    border: unset;
    border-bottom: 1px solid #ccc;
    border-radius: unset;
    color: #121212d6 !important;
    /* background: #908d8d; */
    padding: unset;
    box-shadow: unset;
    padding-left: 35px;
}

    .form-control:focus {
        border-color: #fd0b0b !important;
        /* outline: 0; */
        -webkit-box-shadow: inset 0px 0px 0px rgba(0, 0, 0, 0.19), 0px 2px 0px 0px rgba(158, 20, 20, 0.26);
        box-shadow: inset 0px 0px 0px rgba(0, 0, 0, 0.19), 0px 2px 0px 0px rgba(158, 20, 20, 0.26) !important;
    }

.logo-company-login {
    background: #bd081c;
    text-align: center;
    margin: -15px;
    margin-bottom: unset;
    height: 70px;
    line-height: 70px;
}

.form-login-content form {
    /*padding: 50px 0px;*/
    padding: 0px 0px 50px 0px;
    margin-top: 30px;
}

.login-notifi {
    margin-top: 30px;
    color: red;
    font-style: italic;
}

.form-login-content .form-group > span {
    position: absolute;
    top: 6px;
    left: 4px;
    font-size: 22px;
    color: #484848;
}

.btn-ats-login {
    padding: 10px 44px;
    background: #bd081c;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}
    .btn-ats-login:focus {
        color: #fff;
    }

button.btn.btn-ats-login:hover {
    color: white;
    background: #940303;
}

.btn-ats-register {
    padding: 10px 30px;
    background: white;
    color: #bd081c;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #bd081c;
}

    .btn-ats-register:hover {
        color: white;
        background: #940303;
    }

.icon.flag-popup-show {
    display: inline-block;
    font-size: 22px;
    /* position: relative; */
    /* top: 5px; */
    cursor: pointer;
    margin: 0 15px;
    width: 93px;
}

.setting-language {
    /* position: relative; */
    /* right: 267px; */
    /* z-index: 67; */
    padding-left: 0px;
    list-style: none;
    background: white;
    /* min-width: 121px; */
    /* top: 0px; */
    /* border: 1px solid #f1e9e9; */
    display: none;
    border-top: 1px solid #000;
    margin-left: 15px;
    margin-top: 3px;
}

.show_div {
    display: block !important;
}

.setting-language li {
    font-size: 16px;
    height: 35px;
    border-bottom: 1px solid #ccc;
    /* padding: 0 12px; */
    line-height: 35px;
    cursor: pointer;
    /* margin-left: -42px; */
}

.big-language {
    position: absolute;
    z-index: 100;
    top: 30px;
    left: 20px;
}

.setting-language li a {
    height: 35px;
    display: block;
    color: #5a5151;
    padding-left: 10px;
}

.setting-language a:hover {
    text-decoration: none
}

.setting-language a:visited {
    text-decoration: none
}

.setting-language a:link {
    text-decoration: none
}
.nn-btn-language {
    width: 115px;
    background-color: #bd081c;
}
    .nn-btn-language i{
        margin-left:5px;
    }
.iconsucess {
    font-size: 90px;
    color: green;
}

.icondanger {
    font-size: 90px;
}
    /**=======================================Start Custom Checkbox AST=================================================**/
    .ATS-custom-seleced {
        display: block;
        position: relative;
        padding-left: 30px;
        margin-bottom: 12px;
        cursor: pointer;
        font-size: 18px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        / user-select: none;
        / font-weight: unset;
    }

    /* Hide the browser's default checkbox */
    .ATS-custom-seleced input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #f9f9f9;
    border: 1px solid #bd081c;
}

/* On mouse-over, add a grey background color */
.ATS-custom-seleced:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.ATS-custom-seleced input:checked ~ .checkmark {
    background-color: #bd081c;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.ATS-custom-seleced input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.ATS-custom-seleced .checkmark:after {
    color: red;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
