/* modal.css */
.rr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(3px);
  }
  
  .rr-hidden {
    display: none !important;
  }
  
  .rr-modal-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: fadeIn 0.3s ease;
  }
  
  .rr-close-modal {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
  }
  
  .rr-auth-forms h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #d41405;
  }
  
  .rr-auth-forms input {
    width: 100%;
    padding: 10px;
    margin-bottom: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
  }
  
  .rr-auth-forms input:focus {
    border-color: #d41405;
  }
  
  .rr-auth-forms button {
    width: 100%;
    padding: 10px;
    background: #d41405;
    border: none;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .rr-auth-forms button:hover {
    background: #a30e04;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }
  