.request_access_popup {
    z-index: 100;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
backdrop-filter: blur(10px); /* Adjust the blur amount as needed */
-webkit-backdrop-filter: blur(10px); /* Adjust the blur amount as needed */
background-color: #060b15e8;

display: block;
/* display: none; */
display: none;
}

.request_access_popup_content {
    position: relative;
    width: 340px;
    height: 200px;
    text-align: center;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.request_access_popup_content h3 {
    color: #fff;
    font-size: 26px;
    /* font-weight: normal; */
}
.request_access_popup_content input {
  cursor: text;
  cursor: text;
    width: 240px;
    height: 38px;
    margin-top: 15px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: normal;
    background-color: #4E5A67;
    border: #394552 solid 1px;
    color: white;
}

.request_access_popup_content button {
  background-color: #2F78E1;
  border-radius: 12px;
  margin-top: 10px;
  font-size: 16px;
}
.request_access_popup_content p {
  font-size: 13px;
  color: white;
  margin-top: 5px;
  margin-bottom: 10px;
}