html,
body {
    /* background-color: #82ccfb; */
    background-image: url("../image/bgsmoke.jpg");
    /* background-size: 270%; */
    background-size: auto 285%;
    background-repeat: no-repeat;
    background-position: top;
    background-position-x: 0%;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

::-webkit-scrollbar {
    z-index: 1;
    width: 20px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
}


.inputsOtp {
    display: flex;
    flex-direction: row;
}

.logoAnanda{
    aspect-ratio: 9/2;
    max-width: 400px;
    width: 100vw;
    flex-grow: 1;
}

.loginCard {
    justify-content: center;
    align-items: center;
    margin: 30px;
    width: 500px;
    height: auto;
    background-color: transparent;
    border: 0px none;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    padding: 50px 10px 30px 10px;
}

.formLogin {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 40px;
}

.loginInput {

    width: 60%;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    margin-top: 15px;
}

textarea:focus,
input:focus {
    outline: none;
}



.txtClassOtp {
    text-align: center;
    position: relative;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    height: 30%;
    width: 100%;
    border-radius: 10px;
    border: none;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: clamp(0.5rem, 3vw + 0.03em, 1em);
}


.txtClass {
    position: relative;
    font-family: 'Poppins';
    font-weight: 1000;
    color: #161e3a;
    height: 30px;
    width: 100%;
    border-radius: 10px;
    border: none;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 17px 20px 10px 20px;
    font-size: clamp(1em, 1.3em, 1.5em);

}

.buttonTemplate {
    background-color: rgb(5, 147, 248);
    font-family: 'Poppins';
    font-size: 15.5px;
    font-weight: 600;
    /* font-style: oblique; */
    color: antiquewhite;
    height: 40px;
    width: 65%;
    border-radius: 10px;
    border: none;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: 0.2s;
    text-align: center;

}

.buttonTemplate:hover {
    background-color: rgb(43, 117, 170);
}

.placeholder {
    font-family: 'Poppins';
    /* font-size: 17px; */
    font-weight: 600;
    color: #080c2f91;
    position: absolute;
    left: 0;
    padding-top: 15px;
    pointer-events: none;
    text-transform: uppercase;
    transition: 0.5s;
    font-size: clamp( 1rem, 2.6vw + 0.03em, 1em);
}

.txtClass:valid~.placeholder,
.txtClass:focus~.placeholder {
    color: gray;
    transform: translateX(10px) translateY(-10px);
    font-size: 0.5em;

}

.error {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: red;
    position: absolute;
    left: 0;
    padding-top: 13px;
    pointer-events: none;
    text-transform: uppercase;
    transition: 0.5s;
    transform: translateX(10px) translateY(-10px);
    font-size: 0.5em;
}

.txtClass:valid~.error,
.txtClass:focus~.error {
    color: red;
    transform: translateX(10px) translateY(-10px);
    font-size: 0.5em;
}