body {
    background-color: #1c1f23;
    /* background-color: #343945; */
    font: 13px/20px normal Helvetica, Arial, sans-serif;
    /* color: #4F5155; */
    /* color: white; */
    height: 100vh;
    width: 100vw;
}

.rowCard{
    height: 100vh;
    margin: 0;
    justify-content: center;
    display: flex;
    /* justify-content: center; */
    align-items: center; /* to vertically center*/
    perspective: 600px;

}

.loginCard{
    margin: 0;
    padding: 25px !important;
    border-radius: 12px !important;
    box-shadow: 5px 5px 5px black;
    background-color: aliceblue;
    /* display: flex; */
    justify-content: center;
    align-items: center; /* to vertically center*/
    position: relative;
    /* perspective: 20px; */
    text-align: center;
    /* transition: all 0.75s cubic-bezier(0.9, -0.7, 0.5, 1.8); */
    transition: all 0.5s;
    transform-style: preserve-3d;
    transform: rotateX(88deg); /* Start at 90 degrees */
    /* transition: all 1s cubic-bezier(0.6, -0.28, 0.735, 0.045) */
}

.input-box{
    position: relative;
    margin-top: 20px;
    width: 100%;
    height: 40px;
    margin-bottom:30px;

}

.input-box input{
    background-color: aliceblue;
    font-size: 14px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    padding-left: 25px; /* padding of place holders */
    color: #333;
    transition: all 0.2s ease;
    border-bottom: 2px solid #aaaaaa;
}

.input-box input:focus{
    border-color:#8054a4 ;
}


.input-box i{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
}

.input-box i.email,
.input-box i.pwd{
    left: 0;
    color: #707070
}

.input-box input:focus ~ i.email,
.input-box input:focus ~ i.pwd{
    color:#8054a4 ;
}

.input-box i.show_pwd{
    right: 0;
    font-size: 18px;
}

.option_field{
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.loginCard a{
    text-decoration: none;
    color:#8054a4;
    font-size: 15px;
}

.loginCard a:hover{
    text-decoration: underline;
}

.checkbox {
    display: flex;
    column-gap: 8px;
    white-space: nowrap;
}
.checkbox input{
    accent-color: #8054a4;
}
.checkbox label{
    font-size: 15px;
    cursor: pointer;
    user-select: none;
    color: #0b0217;

}

.loginCard .button{
    font-size: 17px;
    color: #ffffff;
    background: #8054a4;
    margin-top: 30px;
    width: 100%;
    padding: 10px 0;
    border-radius: 10px;
}

.logoImage{
    padding: 25px 0px 0px 0px; /*  top right botton left */
    width: 60%;  /* Adjust the width as needed */
    height: auto;  /* Maintains the aspect ratio */
    display: block;
    margin: 0 auto;  /* Centers the image */

}


/* Below property is hard coded in script tag to take effect on page load */
/* .rowCard:hover .loginCard{
    transform: rotateX(360deg);
    transition: all 0.5s cubic-bezier(0.7, -0.5, 0.3, 1.8);
} */

.front{
    position: relative;
    top: 0;
    left: 0;
    backface-visibility:hidden ;
    /* perspective: 20px; */
    

}

.back{
    transform: rotateX(180deg);
    position: absolute;
}