.bg-login::before {
    position: absolute;
    /*z-index: 1;*/
    top:0; left:0;
    width: 100%; height: 234px;
    content:""; display: block;
    background: url("../images/bg_login_top.png") no-repeat top center;
}
.bg-login::after {
    position: absolute;
    z-index: 1;
    bottom:0; left:0;
    width: 100%; height: 216px;
    content:""; display: block;
    background: url("../images/bg_login_bottom.png") no-repeat bottom center;
}

.login_container {
    height: 100vh;
}
.login_box {
    position: relative;
    top: 50%; left: 50%;
    max-width: 440px;
    z-index:99;
    transform: translate(-50%,-50%);
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(4, 0, 222, 0.25) !important;
}
.login_box::before{
    position: absolute;
    top: 0; right: 0;
    z-index:99;
    content:"";
    display: block;
    height: 98px; width: 113px;
    background: url("../images/login_corner_top.png") top right no-repeat;
}
.login_box::after{
    position: absolute;
    bottom: 0; left: 0;
    content:"";
    display: block;
    height:98px; width: 113px;
    background: url("../images/login_corner_bottom.png") bottom left no-repeat;
}
.login_box .card-header:first-child {
    border-radius: 15px 15px 0 0;
}
.login_box .card-body {
    border-radius: 0 0 15px 15px;
}
.login_box .login-title {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    color: #595959;
    margin: 0;
    padding: 44px 0 20px;
}
.login_box #name, .login_box #password {
    border-radius: 0; border: 0;
    border-bottom: 1px solid #818181;
    background-color: unset;
}
.login_box label { color: #737373; font-weight: 700; opacity: 1 !important}
.login_box .btn-link {
    color: #676767; font-weight: 700;
    text-decoration: none;
    margin-top: 50px;
    margin-bottom: 15px;
}
.login_box a.btn-link { text-decoration: underline}
.login_box a.btn-link:hover { color: #2F4960}
.login_box button[type="submit"] {
    width: 100%; height: 50px;
    background: #2F4960;
    border-radius: 53px;
    border: 0;
    z-index: 99;
    font-weight: 700;
}
.login_box button[type="submit"]:hover {
    background: #273c4e;
}

.version {
    position: absolute;
    right: 20px; bottom: 20px;
    z-index: 99;
    font-weight: 700;
    font-size: 16px;
    color: #494949;
}


/* RESET FORM */
.reset_container {
    height: 100vh; width: 100%;
    background: rgba(0, 0, 0, 0.2);
    padding-left: 0;
    padding-right: 0;
}
.reset_box {
    position: relative;
    top: 50%; left: 50%;
    max-width: 500px;
    z-index:99;
    border-radius: 15px;
    transform: translate(-50%,-50%);
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.25) !important;
}
.reset_title {
    color: #484549;
    font-size: 28px;
    font-weight: 700;
    padding: 25px 0px 20px;
    margin: 0 30px;
    background-color: transparent;
    border-bottom: 1px solid #C7C7C7;
}
.reset_box .card-body {
    color: #484549;
    padding: 30px;
    font-weight: 700;
    font-size: 16px;
}
.reset_box .card-body p { color: #919191;}
.reset_box label { margin-bottom: 8px }
.reset_box #email,
.reset_box #name {
    border: 1px solid #5A5A5A;
    height: 45px; border-radius: 0;
}
.reset_box .btn {
    width: 180px;
    height: 45px;
    margin: 0 18px;
    border-radius: 54px;
    border: 0;
    font-weight: 700;
    padding: 0;
    line-height: 45px;
}
/*.reset_box .btn:hover {*/
/*    background: #ccc;*/
/*}*/
/*.reset_box .btn-save {*/
/*    background: #70CB74; color: #fff;*/
/*}*/
/*.reset_box .btn-save:hover {*/
/*    background: #5da960;*/
/*}*/

/* RESPONSIVE */
@media only screen and (min-width: 1900px) {
    .bg-login::before, .bg-login::after {
        object-fit: cover;
        background-size: 100%;
    }
}
@media only screen and (max-width: 600px) {
    .bg-login::before, .bg-login::after {
        background-size: 100%;
    }
}
@media only screen and (max-width: 450px) {
    .login_box .login-title { padding: 30px 0 20px; }
    .login_box .btn-link { margin-top: 30px; }
    .version { bottom: 10px}

    .reset_title { font-size: 26px}
    .reset_box .mb-5 { margin-bottom: 30px !important}
    .reset_box .btn { width: 150px; margin: 0 5px;}
}
@media only screen and (max-width: 375px) {
    .reset_title { font-size: 24px}
    .reset_box .btn { width: 120px; margin: 0 5px;}
}
@media only screen and (max-width: 320px) {
    .login_box .login-title { font-size: 22px; padding: 20px 0 0;}
    .login_box::before, .login_box::after {background-size: 80%;}
    .login_box .btn-link { margin-top: 10px }

    .reset_box .card-body { padding: 15px; font-size: 15px;}
    .reset_title { font-size: 20px; margin: 0 15px;}
}
