 
.password_reset_request_form {
  width: 100%;  
  height: auto; 
  margin: auto;
  overflow-y: auto;
 
}

.password_reset_request_form h2 {
  font-family: ubuntu;
  font-size: 1.3rem;
  text-align: center;        
  padding: 6px;
  color: rgb(142, 0, 102);
  /* padding-left: 4rem; */
}

.password_reset_request_form {
margin: auto;
width: 500px;
 text-align: center;
  
background-color: rgba(255, 255, 255, 0.95);
border-radius: 20px;
color: #333;
/* font-family: sans-serif; */
line-height: 1.5;
/* max-width: 50%; */
padding: 1rem 2rem;

}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  .password_reset_request_form {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(5px);
    background-color:rgba(240, 228, 70, 0.5) ;
    }
  .warning {
    display: none;
  }
}

.password_reset_request_form input {
  font-size: 16px;
  padding: 6px;
  font-family: 'Ubuntu';
  width: 320px;
  margin: 4px;
  border-radius: 8px;
  border: 0px solid #000;
  padding: 10px;
}

.password_reset_request_form label {
  font-size: 20px;
  padding: 6px;
  width: 300px;
  font-family: 'Ubuntu';
  text-align: left;

  text-transform: uppercase;
   display:inline-block;
}

.password_reset_request_form input[type="submit"], input[type="reset"] {
  font-size: 25px;
  padding: 14px;
  width: 146px;
  font-family: 'Ubuntu';
  text-align: center;
  background-color: rgb(32, 169, 199);
  border: 0px solid #000;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  margin-top: 12px;
}

.password_reset_request_form input[type="submit"]:hover, input[type="reset"]:hover {
  background-color: rgb(78, 174, 191);
}

.password_reset_request_form input[type="submit"]:active, input[type="reset"]:active {
  background-color: #333;
}
 

.registration_terms_overlay {
  position: fixed; /* Sit on top of the page content */
  /* display: none;   */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5); /* Black background with opacity */
  z-index: 2; 
  
  /* Specify a stack order in case you're using a different order for other elements */
  /* cursor: pointer;   */
}
 
.passwordResetRequestInfo {
  font-size: 1rem;
  font-family: 'Ubuntu';
  background-color: #fff0b5;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  width: auto;
}


.login_info {
  font-size: 12px;
  font-family: 'Ubuntu';
}