
@font-face {
    font-family: Inter-Regular;
    src: url(../assets/fonts/Inter/Inter-Regular.ttf);
}

.limiter {
    width: 100%;
    margin: 0 auto;
}

.container-login100 {
    align-items: center;
    background: #fff;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    min-height: 100vh;
    padding: 15px;
    width: 100%;
}

.container-login100 .img{
    width: 100%;
}

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

.wrap-login100 {
    width: 320px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 5px 5px 20px 5px #cdcdcd;
    padding: 20px;
}


.login100-form {
    width: 100%;
    border-radius: 10px;
    background-color: #fdfdfd;
}

.login100-form-logo {
    font-size: 60px;
    color: #333;

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

.login100-form-title {
    font-family: Inter-Regular;
    font-size: 28px;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;

    display: block;
}

.wraper-login {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 200px;
    justify-content: center;
}


.wrap-input100 {
    display: flex;
    align-items: center;
}

.input-user, .input-password {
    align-items: center;
    align-self: stretch;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-grow: 0;
    flex: none;
    font-family:Inter-Regular;
    height: 46px;
    margin: 8px 0;
    order: 1;
    padding: 10px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.input-user:focus,
.input-password:focus,
.input-user:focus-visible,
.input-password:focus-visible {
    border: 1px solid #ededfc;
    outline: 1px solid #ededfc;
}

.login-user-wrap, .login-password-wrap {
    align-items: center;
    display: flex;
}

.login-user-wrap::before, .login-password-wrap::before {
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 25px;
    margin-right: 10px;
    width: 25px;
    -webkit-transition: all 0.250s;
    -o-transition: all 0.250s;
    -moz-transition: all 0.250s;
    transition: all 0.250s;
}

.login-user-wrap::before {
    background-image: url(../assets/icons/avatar.png);
}

.login-password-wrap::before {
    background-image: url(../assets/icons/key.png);
}

.login-user-wrap:focus-within::before {
    background-image: url(../assets/icons/avatar-alt.png);
}

.login-password-wrap:focus-within::before {
    background-image: url(../assets/icons/key-alt.png);
}



/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.login100-form-btn, .form-btn-popup {
    font-family: Inter-Regular;
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;

    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: 160px;
    height: 42px;
    border-radius: 10px;
    border: none;
    background: #1b59f8;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.login100-form-btn::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 21px;
    background-color: #167dfa;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 0.250s;
    -o-transition: all 0.250s;
    -moz-transition: all 0.250s;
    transition: all 0.250s;
}

.login100-form-btn:hover {
    background-color: #ededfc;
    border: 1px solid #ededfc;
    color: #167dfa;
}

.login100-form-btn:hover:before {
    opacity: 1;
}
