* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

input {
    outline: none;
    border: none;
    font-size: 15px;
    color: #555555;
    line-height: 1.2;
    background: transparent;
    padding: 0 5px;
    display: block;
    width: 100%;
    height: 45px;
}

input:focus::-webkit-input-placeholder, input:focus:-moz-placeholder, input:focus::-moz-placeholder, input:focus:-ms-input-placeholder { color: transparent; }
input::-webkit-input-placeholder, input:-moz-placeholder, input::-moz-placeholder, input:-ms-input-placeholder { color: #adadad; }

select {
    width: 100%;
    height: 2.4rem;
    padding: 0 0.8rem;

    border-radius: 3.2rem;
    background: rgb(246, 246, 246);

    appearance: none; 
    cursor: pointer;
}

select:focus { outline: none; }

.limiter {
    width: 100%;
    margin: 0 auto;
}

.container-login100 {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #111431;
}

.wrap-login100 {
    width: 390px;
    max-height: 90dvh;
    background: rgb(246, 246, 246);
    border-radius: 10px;
    overflow-y: scroll;
    padding: 3.2rem;
}

.login100-form {
    width: 100%;
    max-height: 200dvh;
    overflow: hidden;
}

.login100-form-title {
    display: block;
    font-size: 30px;
    color: #111431;
    line-height: 1.2;
    text-align: center;
}

.login100-form-title img {
    width: auto;
    height: 64px; 
    margin: 1.6rem 0;
}

.wrap-input100 {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #adadad;
    margin-bottom: 37px;
}

.focus-input100 {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    color: #999999;
    font-size: 15px;
    line-height: 1.2;
    padding-left: 5px;
    transition: all 0.4s;
}

.focus-input100::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #21d4fd, #b721ff);
    transition: all 0.4s;
}

.focus-input100::after {
    content: attr(data-placeholder);
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    transition: all 0.4s;
}

.input100:focus + .focus-input100::after, .input100:not(:placeholder-shown) + .focus-input100::after { top: -15px; }
.input100:focus + .focus-input100::before, .input100:not(:placeholder-shown) + .focus-input100::before { width: 100%; }

.container-login100-form-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 13px;
}

.wrap-login100-form-btn {
    width: 100%;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    margin: 0 auto;
    z-index: 1;
}

.login100-form-bgbtn {
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: linear-gradient(to right, #ff9523, #FF6200);
    transition: all 0.4s;
    z-index: -1;
}

.login100-form-btn {
    font-size: 15px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.wrap-login100-form-btn:hover .login100-form-bgbtn { left: 0; }

@media (max-width: 576px) { .wrap-login100 { padding: 77px 15px 33px 15px; } }

.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%;
    right: 0;
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%);
    transition: opacity 0.4s;
}

.alert-validate::after {
    content: "\f06a";
    font-size: 16px;
    color: #c80000;
    position: absolute;
    background-color: #fff;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    display: block;
}

.alert-validate:hover::before { opacity: 1; visibility: visible; }
@media (max-width: 992px) { .alert-validate::before { opacity: 1; visibility: visible; } }

.zmdi {
    width: 6.4rem;
    height: 4.4rem;
    border-radius: 3.2rem;
    margin: 1.6rem 0;
}

.wrap-login100 { overflow-y: scroll; max-height: 90dvh; }
.wrap-login100::-webkit-scrollbar { width: 0.4rem; }
.wrap-login100::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 3.2rem; }
.wrap-login100::-webkit-scrollbar-thumb { background: linear-gradient(to right, #FF6200, #ff9523); border-radius: 3.2rem; }
