#access-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
  }
  #access-popup {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    text-align: center;
    position:relative;
  }
  #access-popup input {
    width: 100%;
    padding: .5rem;
    margin: .5rem 0;
    font-size: 1rem;
    border-radius:5px;
    border: 1px solid #eaeaea;
  }
  #access-popup button {
    padding: .6rem 1.2rem;
    font-size: 1rem;
    cursor: pointer;
  }

  #access-popup h2 {
    font-family: 'Outfit', sans-serif;
    color: #1C3664;
    font-size: 25px;
    font-weight:700;
  }
  

  .access-close-btn {
    margin-top: 1rem;
    background: transparent;
    border: none;
    color: #555;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    top: -30px;
    right: -10px;
    padding: 20px;
    background: darkred;
    color: #fff;
    text-decoration: none;
    line-height: 1.5;
    position:absolute;
    border-radius:5px;
  }
  .access-close-btn:hover {
    color: #000;
  }
  