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

@font-face {
    font-family: Poppins-Medium;
    src: url(../fonts/poppins/Poppins-Medium.ttf)
}

@font-face {
    font-family: Poppins-Bold;
    src: url(../fonts/poppins/Poppins-Bold.ttf)
}

@font-face {
    font-family: Poppins-SemiBold;
    src: url(../fonts/poppins/Poppins-SemiBold.ttf)
}

.validate-message {
    display: none;
    color: red;
    font-size: 12px;
    margin-top: 5px;
  }
  
  .btn-hide-validate {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'FontAwesome';
    font-size: 12px;
    cursor: pointer;
  }


  

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


input {
    outline: none;
    border: none
}


input::-webkit-input-placeholder {
    color: #ffffffa2;

}


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

button:hover {
    cursor: pointer
}

.limiter {
    width: 100%;
    margin: 0 auto
}
#login{
    background-color: #adadad;
}

.container-login100 {
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    align-items: center;
    padding: 15px;
    background-image: url('../images/background\ image.png');
    background-repeat: no-repeat;
    background-size: 100vw 100vh;
}

.wrap-login100 {
    /* width: 390px; */
    border: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin-right: 13%;
    margin-top: -8%;
}

.login100-form {
    width: 100%
}

#login-form{
    background-color: #80808070;
    width: 40vw;
    box-shadow: 2px 2px 2px 2px rgb(51 51 51 / 23%);
    /* height: 45vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 571px;
    margin: 0 auto;
    /* padding: 20px; */
}

.login100-form-title {
    display: block;
    font-family: Poppins-Bold;
    font-size: 39px;
    color: #fff;
    line-height: 1.2;
    text-align: center;
}

.login100-form-avatar {
    display: flex;
    width: 106px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    justify-content: flex-start;
    align-content: center;
    align-items: flex-end;
    flex-wrap: nowrap;
    flex-direction: column;
    margin-left: -8%;
    margin-top: 23px;


}

.login100-form-avatar img {
    width: 100%
}

.wrap-input100 {
    width: 84%;
    /* left: 8vh;
    position: relative; */
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;  
    border-bottom: 1px solid #d9d9d9;  
    border-right-color: #333;
}

.input100 {
    font-family: inherit;
    font-size: 18px;
    color: #fff;
    background-color: transparent;
    /* border-bottom: 1px solid; */
    width: 95%;
    /* left: 8vh;
    position: relative; */
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;      
}

.focus-input100 {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0vh;
    pointer-events: none;
    background-color:#8080800d;
    /* border-bottom: 1px solid gray; */

}

.focus-input100::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    background: #57b846;
}

.focus-input100::after {
    font-family: Poppins-Medium;
    font-size: 18px;
    color: white;
    line-height: 1.2;
    content: attr(data-placeholder);
    display: block;
    width: 84%;
    position: absolute;
    top: 15px;
    left: 7%;
    padding-left: 5px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    /* background-color: transparent; */
}

.input100:focus+.focus-input100::after {
    top: -20px;
    font-size: 15px;
    /* background-color: transparent; */

}

.input100:focus+.focus-input100::before {
    width: 100%
}

.has-val.input100+.focus-input100::after {
    top: -20px;
    font-size: 15px;
    /* background-color: transparent; */

}

.has-val.input100+.focus-input100::before {
    width: 100%
}

.container-login100-form-btn {
    /* width: 100%; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 34px 20px;

}

.login100-form-btn {
    font-family: inherit;
    font-size: 16px;
    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;
    height: 51px;
    background-color: #d20a3c;
    border-radius: 9px;
    box-shadow: 0 10px 30px 0 rgba(61, 28, 20, 0.5);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    width: 100%;
    border: none;
    cursor: pointer;
}


.login100-form-btn:hover {
    background-color: #333;
    box-shadow: 0 10px 30px 0 rgba(51,51,51,.5);
    -moz-box-shadow: 0 10px 30px 0 rgba(51,51,51,.5);
    -webkit-box-shadow: 0 10px 30px 0 rgba(51,51,51,.5);
    -o-box-shadow: 0 10px 30px 0 rgba(51,51,51,.5);
    -ms-box-shadow: 0 10px 30px 0 rgba(51,51,51,.5)
}

.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: 0;
    pointer-events: none;
    font-family: Poppins-Regular;
    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;
    font-size: 16px;
    color: #c80000;
    display: block;
    position: absolute;
    background-color:transparent;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 5px
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1
}

@media(max-width: 992px) {
    .alert-validate::before {
        visibility:visible;
        opacity: 1
    }
}

/* .login-more li {
    position: relative;
    padding-left: 16px
} */

/* .login-more li::before {
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #ccc;
    top: 45%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0
} */


input:invalid + .focus-input100:before {
    background: #ff0000; /* Change to your desired red color */
}

.wrap-input100::after{
    border-bottom-color: #57b846;
}
.wrap-input100.invalid {
    border-bottom-color: red; 
}