.min-vh{
  min-height: 50vh !important;
}
  @media (max-width: 992px) {
    .ReactModal__Content {
      width: 60vw !important; /* Ensure the modal takes full width on small screens */
      margin: 0; /* Remove auto margin to prevent centering issues */
      inset:0px !important;
    }
  }
  @media (max-width: 768px) {
    .ReactModal__Content {
      width: 80vw !important; /* Ensure the modal takes full width on small screens */
      margin: 0; /* Remove auto margin to prevent centering issues */
      inset:0px !important;
    }
  }
  @media (max-width: 586px) {
    .ReactModal__Content {
      width: 100vw !important; /* Ensure the modal takes full width on small screens */
      margin: 0; /* Remove auto margin to prevent centering issues */
      inset:0px !important;
    }
  }
  
  .modal-body {
    max-height: 80vh;
    overflow-y: auto;
    scroll-behavior: smooth; /* Enables smooth scrolling */
  }
  
.email::first-letter{
  text-transform: capitalize !important;
}
.email{
  text-transform: lowercase;
}

