* {
    padding: 0;
    margin: 0;
    font-family: "Montserrat";
    box-sizing: border-box;
}
.curtain_ajax {
    height: 100vh;
    width: 100vw;
    background-color: rgba(5, 97, 245, 0.486);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
  transition: background-color 5000s;
  -webkit-text-fill-color: #fff !important;
}
body {
    height: 100vh;
    background-image: url(../../images/loading.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.logo {
    display: flex;
    justify-content: center;
    padding: 10px 0 32px 0;
}

.logo img {
    width: 119px;
    height: 97px;

}

.item {
    display: flex;
    align-items: center;
    width: 300px;
    height: 45px;
}

.inputs {
    border: 1px solid white;
    border-radius: 5px;
    margin-top: 16px;
    transition: 0.3s;
}
.inputs:focus-within{
    box-shadow: 0 0 4px 4px rgb(235, 235, 235);
}
.item img {
    width: 25px;
    height: 25px;
    padding: 5px;
}

.item input {
    background-color: transparent !important;
    outline: none;
    border: none;
    color: white !important;
    flex-grow: 1;
    padding-left: 15px;
    font-size: 1rem;
}

.item input::placeholder {
    color: white;
}
input:internal-autofill-selected {
    background-color: transparent;
    color: white;
}
input::selection{
    background-color: red;
}
.btn {
    margin-top: 32px;
    height: 45px;
}

.btn button {
    width: 100%;
    border: none;
    outline: none;
    background-color: white;
    padding: 8px;
    border-radius: 5px;
    height: 100%;
    color: #2148C0;
    font-size: 16px;
    font-family: "Montserrat";
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
}

.check {
    display: flex;
    height: 15px;
    align-items: center;
    justify-content: end;
    margin-top: 12px;
}
.check input{
    zoom : 1.5;
    cursor: pointer;
}
.check label {
    cursor: pointer;
    margin-right: 5px;
    color: white;
}
#showpass{
    cursor: pointer;
    color: white;
    margin: 0 8px 0 8px;
}
.warning_div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background-color: rgba(5, 97, 245, 0.486);
    position: fixed;
    top:0;
    left: 0;
    z-index: 9999;
}
.warning_content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: max(300px, 80%);
    height: 200px;
    background-color: white;
    border-radius: 15px;
    padding: 15px;
}
.warning h4{
text-align: center;
    color: #2148C0;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 16px;
    font-family: "Montserrat";
    word-wrap: break-word;
}
.warning_txt{
    text-align: center;
    color: red;
}
#move_next{
    margin-top: 16px;
    width: 100%;
    border: none;
    outline: none;
    background-color: #2148C0;
    padding: 28px;
    border-radius: 5px;
    height: 100%;
    color: white;
    font-size: 16px;
    font-family: "Montserrat";
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}