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

body{
    font-size: 1em;
}


form#inqlogin {
  user-select: none;
}

.login_form{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form{
    width: 23em;
    padding:2em;
    border-radius: 1em;
    box-shadow: 0 10px 25px rgba(90,100,100,.2);
}

.form_title{
    font-weight: 300;
    margin-bottom: 1.3em;
}

.form_div{
    position: relative;
    height: 3em;
    margin-bottom: 1.6em;
}


.form_input{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 1em;
    border: .1em solid #dadce0;
    border-radius: .5em;
    outline: none;
    padding: 1em;
    z-index: 1;
    background: none;
}

.form_label{
    position: absolute;
    left: 1em;
    top: 1em;
    padding: 0 .25em;
    background-color: #fff;
    color: #80868b;
    font-size: 1em;
    transition: .4s;
}

.form_button{
    width: 100%;
    display: block;
    margin-left: auto;
    padding: 1em 2em;;
    outline: none;
    border: none;
    background-color: rgb(28,164,248);
    color: #fff;
    font-size: 1em;
    border-radius: .5em;
    cursor: pointer;
    transition: .4s;
    margin-top: 6.3em;
}

.form_button:hover{
    transform: scale(0.90);
    box-shadow: 0 5px 5px rgba(0,0,0,0.20);
}

/* LOGIN FORM BUTTON  */
.login_form_button{
    width: 100%;
    display: block;
    margin-left: auto;
    padding: 1em 2em;;
    outline: none;
    border: none;
    background-color: rgb(28,164,248);
    color: #fff;
    font-size: 1em;
    border-radius: .5em;
    cursor: pointer;
    transition: .4s;
    margin-top: 1em;
}

.login_form_button:hover{
    transform: scale(0.90);
    box-shadow: 0 5px 5px rgba(0,0,0,0.20);
}



.form_input:focus + .form_label{
    top: -.5em;
    left: .8em;
    color: rgb(28,164,248);
    font-size: .80em;
    font-weight: 600;
    z-index: 5;
}

.form_input:not(:placeholder-shown).form_input:not(:focus) + .form_label{
    top: -.5em;
    left: .8em;
    font-size: .80em;
    font-weight: 600;
    z-index: 5;
}

.form_input:focus{
    border: .1em solid rgb(28,164,248);
}

/* Google ReCaptacha v2 (Invisible) anchor footer styles */
.rc-anchor-normal-footer {
  background-color: #f0f0f0; /* Light gray */
  border: 1px solid #ccc;      /* Light gray border */
  border-radius: 5px;         /* Rounded corners */
  padding: 10px;              /* Add some internal spacing */
  height: 40px !important;
  width: 40px !important;
}

form p{
    display:flex;
    justify-content:space-evenly;  
}



#togglePassword {
  position: absolute;
  padding: 2px;
  right: 10px; /* Adjust as needed */
  top: 50%;
  transform: translateY(-50%); /* Center vertically */
  cursor: pointer;
  /* Add any desired styles for the icon */
  color: rgb(28,164,248);
  z-index: 2; /* Needed bc the input is also at z-index=1 */
}

input#username:-webkit-autofill {
     background-color: none !important; /* Example: Change to yellow */
     /* You can also override other properties like text color, etc. */
   }

input#username:-webkit-autofill:focus {
     background-color: none !important; /* Example: Change on focus */
   }
