 

.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;   */
}

.registration_terms {
  margin: 3rem auto;
  padding: 40px;
  
  width: 60%;
  height: auto;
  max-height: 60vh;
  
  font-size: 20px;
  color: rgb(0, 0, 0);
 
  
  background-color: aliceblue;
  border-radius: 8px;
  opacity: 1;
  font-family: Ubuntu;
  font-size: 1rem;
  line-height: 1.4rem;
  overflow-y: scroll;
}


#agree {
  margin-top: 20px;
  background-color: green;
  cursor: pointer;
  padding: 20px;
  font-size: 20px;
  color: azure;
  border-radius: 8px;
  text-decoration: none;
}

#disagree {
  background-color: red;
  cursor: pointer;
  padding: 20px;
  font-size: 20px;
  color: azure;
  border-radius: 8px;
  text-decoration: none;
}
 