﻿@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");

body,
html {
    height: 100%;
    font-family: 'Poppins', sans-serif
}

input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow:unset !important;
}
.container-login {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex; 
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #fff;
    flex-direction:column;
}
  
.wrap-login { 
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    box-shadow: 5px 10px 10px rgb(0 0 0 / 20%);
    border: 2px solid #f2f2f2;
}

.login-form-title {
    width: 100%;
    padding: 34px 44px 46px 44px;
    position: relative;
}

.brand-logo {
    width: 200px;
    margin: 0 auto;
}
.brand-logo img{
    max-width:100%
}
.login-form-title-1 p{
    color: rgba(33, 37, 41, 0.8);
    line-height: 1;
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.login-form-title-1 h2 {
    margin-bottom:24px; 
    color: rgba(33, 37, 41, 0.8);
    line-height: 1;
    text-align: left;
    font-size:2.565rem;
    margin-top: 0px;
    margin-bottom: 8px;
}

.login-form {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 14px 44px 30px 44px;
}
.notice-txt{
    padding: 20px;
}
.wrap-input {
    width: 100%;
    position: relative;
}

.label-input { 
    font-size: 15px;
    color: #212529;
}

.input { 
    font-size: 15px;
    color: #555;
    line-height: 1.2;
    display: block;
    width: 100%;
    background: 0 0;
    padding: 0 5px;
    max-width: 100%;
}

.focus-input {
   color:red;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none
}

    .focus-input::before {
        content: "";
        display: block;
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 0;
        height: 1px;
        -webkit-transition: all .6s;
        -o-transition: all .6s;
        -moz-transition: all .6s;
        transition: all .6s;
        background: #57b846
    }

.m-b-26 {
    margin-bottom: 26px;
}

input.input {
    height: 52px;
    background: #fff;
    border: 1px solid #777;
    padding: 0 8px;
}

    input.input::placeholder {
        color: #acaab1;
    }

    .input:focus + .focus-input::before {
        width: 100%
    }

.has-val.input + .focus-input::before {
    width: 100%
}


.wrap-checkbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 30px;
}

.label-checkbox { 
    font-size: 13px;
    color: #999;
    line-height: 1.4;
    position: relative;
    cursor: pointer
}


.container-login-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-btn {
    width: 100%;
    padding: 0 20px;
    height: 50px;
    background-color: #00407b;
    border-radius: 50px;
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    border: 1px solid #00407b;
    display: flex;
    align-items: center;
    justify-content: center;

}

.login-icon{
    padding-left:8px;
}
.login-form-btn:hover {
    background-color: #fff;
    border: 1px solid #00407b;
    color: #00407b;
}

.sslseal {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
 

@media(max-width:480px) {  
    .label-input {
        text-align: left;
        position: unset;
        top: unset;
        left: unset; 
        padding: 0 5px
    }
}

.validate-input {
    position: relative
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: #fff;
    border: 1px solid #c80000;
    border-radius: 2px;
    padding: 4px 25px 4px 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 2px;
    pointer-events: none;
    font-family: Poppins-Medium;
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    -moz-transition: opacity .4s;
    transition: opacity .4s
}

.alert-validate::after {
    content: "\f06a";
    font-family: FontAwesome;
    display: block;
    position: absolute;
    color: #c80000;
    font-size: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 8px
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1
}

@media(max-width:992px) {
    .alert-validate::before {
        visibility: visible;
        opacity: 1
    }
}
.forgot-cta {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.col-centered {
    float: none;
    margin: 0 auto; 
    transform: translateY(100px);
}
h2.instance {
    font-size: 28px;
    margin: 30px 0;
    text-transform: uppercase;
}

    h2.instance::before,
    h2.instance::after {
        display: inline-block;
        content: "";
        border-top:  2px solid #00407b;
        width: 8rem;
        margin: 0 1rem;
        transform: translateY(-1rem);
    }

.email-link-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.email-link-cta input{
    max-width:100%;
}

.return-login-cta{
    text-align: center;
    width: 100%;
    margin-top: 12px;
}

.success-msg{
    text-align: center;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}
.password-show:hover {
    background: #eceef0;
    padding: 10px;
    border-radius: 5px;
}

.password-show {
    position: absolute;
    top: 50px;
    right: 11px;
    cursor: pointer;
    font-size: 18px;
    padding: 10px;
}
input[type="checkbox"]:checked:after, .checkbox input[type="checkbox"]:checked:after, .checkbox-inline input[type="checkbox"]:checked:after {
    background-color: #00407b;
    border-color: #00407b;
}

.invalid-login-msg ul{
   padding-left: 0px;
   margin-top:-15px;
}
.invalid-login-msg ul li{
    list-style-type:none;
}

@media (max-width: 768px) {
    .login-form { 
        padding: 14px 24px 30px 24px;
    }
}