/*#region  **** login  ****/
@font-face {
    font-family: 'Material-Design-Iconic-Font';
    src: url('../assets/iconic/fonts/Material-Design-Iconic-Font.woff2?v=2.2.0') format('woff2'), url('../assets/iconic/fonts/Material-Design-Iconic-Font.woff?v=2.2.0') format('woff'), url('../assets/iconic/fonts/Material-Design-Iconic-Font.ttf?v=2.2.0') format('truetype');
    font-weight: normal;
    font-style: normal;
}

input.place-white:-webkit-input-placeholder {
    color: #fff;
}

input.place-white::placeholder {
    color: #fff;
}

.page-log-in {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    overflow: hidden;
}

.bakg-login {
    width: 100%;
    min-height: 650px;
    height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    background-image: url("../images/slider/img-2.png");
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* padding: 15px; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.bakg-login:before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(179, 179, 179, 0.75);
}

.wrap-login {
    max-width: 400px;
    border-radius: 10px;
    overflow: hidden;
    padding: 55px 55px 37px 55px;
    background: #9152f8;
    background: -webkit-linear-gradient(top, #000000, #c1c1c1);
    /* background: -o-linear-gradient(top, #7579ff, #b224ef);
    background: -moz-linear-gradient(top, #7579ff, #b224ef);
    background: linear-gradient(top, #7579ff, #b224ef); */
}

.login-form {
    width: 100%;
}

.login-form-logo {
    font-size: 60px;
    color: #333333;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 auto;
}

.login-form-title {
    margin-top: 15px;
    font-family: Raleway;
    font-size: 30px;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    display: block;
    margin-bottom: 30px;
}

.wrap-input {
    width: 100%;
    position: relative;
    border-bottom: 2px solid rgba(255, 255, 255, 0.24);
    margin-bottom: 30px;
    /* float: unset; */
}

.input {
    outline: none;
    border: none;
    font-family: Raleway;
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 45px;
    background: transparent;
    padding: 0 5px 0 38px;
}

.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: #fff;
}

.focus-input:after {
    font-family: Material-Design-Iconic-Font;
    font-size: 22px;
    color: #fff;
    content: attr(data-placeholder);
    display: block;
    width: 100%;
    position: absolute;
    top: 6px;
    left: 0px;
    padding-left: 5px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.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;
}

.div-reg {
    padding-left: 5px;
    padding-top: 10px;
    padding-bottom: 30px;
}

.label-reg {
    font-family: Raleway;
    font-size: 13px;
    color: #fff;
    line-height: 1.2;
    /* display: block; */
    position: relative;
    padding-left: 0;
    cursor: pointer;
}

.label-reg:hover {
    color: #fac224;
}

.container-login-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-family: Raleway;

}

.login-btn {
    outline: none !important;
    border: none;
    /* font-family: Poppins-Medium; */
    font-size: 16px;
    color: #555555;
    line-height: 1.2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-width: 120px;
    height: 50px;
    border-radius: 25px;
    /* background: #9152f8; */
    background: -webkit-linear-gradient(bottom, #060606, #a5a5a5);
    /* background: -o-linear-gradient(bottom, #7579ff, #b224ef);
    background: -moz-linear-gradient(bottom, #7579ff, #b224ef);
    background: linear-gradient(bottom, #7579ff, #b224ef); */
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    margin-bottom: 15px;
}

.login-btn:before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background-color: #fff;
    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;
}

button {
    outline: none !important;
    border: none;
    background: transparent;
}

.login-btn:hover {
    color: #fff;
    cursor: pointer;

}

.login-btn:hover:before {
    opacity: 0;
}

.p-t-90 {
    padding-top: 40px;
}

.a-forget-pss {
    font-family: Raleway;
    font-size: 13px;
    color: #070707;
    line-height: 1.5;
    cursor: pointer;
}

.a-forget-pss:hover,
.a-forget-pss:focus {
    outline: none !important;
    color: #fff;
    text-decoration: underline;
}

/*#endregion  **** login  ****/

/*#region  **** validate  ****/

#success_message {
    display: none;
    margin-left: 12px;
    width: 97%;
}

#page-login .help-block {
    position: absolute;
    top: 47px;
    /* margin-top: -13px; */
    /* margin-bottom: 10px; */
    color: #ffffff;
}

.alert-success {
    color: #123941;
}

/*#endregion  **** vaidate  ****/

/*#region  **** loader  ****/

.loadingDiv {
    width: 100%;
    height: 100%;
    z-index: 20000;
    opacity: 0.5;
    background-color: black;
    position: fixed;
    display: none;
}

.loadingDiv img {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.LoadingImg {
    height: auto;
    width: 32px;
    position: absolute;
    top: 11px;
    right: 5px;
    z-index: 1000s000;
}

/*#endregion*/

.div-login-animated {
    transition: all 1s ease-in;
    top: 1000px;
    position: absolute;
}

.div-login-animated.show {
    top: 10%;
}

.closeX {
    color: black;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fbc325;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    font-size: 19px;
}

@media(max-width:350px) {
    .wrap-login {
        padding: 55px 20px 37px 20px;
    }
}