/* Modal Wrapper */
#vip-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
  }
  
  /* Modal Container */
  .vip-modal-content {
    background: #fff;
    width: 90%;
    max-width: 700px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
  }
  
  /* Hide modal */
  #vip-modal.hidden {
    display: none;
  }
  
  /* Close Button */
  .vip-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 22px;
    cursor: pointer;
    color: #333;
  }
  
  /* Left Side: Image or Promo */
  .vip-modal-left {
    width: 45%;
    background: #f3f3f3 url('https://rwb.gulfcoastitsolutions.net/wp-content/uploads/2025/05/VIP-Member-Sign.webp') center/cover no-repeat;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #222;
    text-align: center;
  }
  
  .vip-modal-left h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
  }
  
  /* Right Side: Forms */
  .vip-modal-right {
    width: 55%;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* Step Containers */
  .vip-step {
    display: none;
  }
  
  .vip-step.active,
  .vip-step:not(.hidden) {
    display: block;
  }
  
  /* Form Styles */
  .vip-modal-right input[type="email"],
  .vip-modal-right input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  
  .vip-modal-right button {
    width: 100%;
    padding: 12px;
    background-color: #111;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .vip-modal-right button:hover {
    background-color: #333;
  }
  
  .vip-feedback,
  #vip-login-feedback,
  #vip-register-feedback {
    margin-top: 10px;
    font-size: 14px;
    color: #cc0000;
    min-height: 20px;
  }
  
  /* Social Login Buttons */
  .vip-social {
    margin-top: 20px;
    text-align: center;
  }
  
  /* Responsive */
  @media (max-width: 640px) {
    .vip-modal-content {
      flex-direction: column;
      max-height: 90vh;
      overflow-y: auto;
    }
  
    .vip-modal-left,
    .vip-modal-right {
      width: 100%;
    }
  
    .vip-modal-left {
      height: 200px;
    }
  }
  