/* Add this to your existing CSS */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  
  .auth-modal.show {
    opacity: 1;
    visibility: visible;
  }
  
  .auth-container {
    background-color: #111111;
    border: 2px solid #FF0000;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    position: relative;
  }
  
  .close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .auth-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
  }
  
  .tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 0.75rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s, border-color 0.3s;
    border-bottom: 3px solid transparent;
  }
  
  .tab-btn.active {
    opacity: 1;
    border-bottom-color: #FF0000;
  }
  
  .tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }
  
  .auth-container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: white;
  }
  
  .auth-btn {
    width: 100%;
    background-color: #FF0000;
    color: white;
    border: none;
    padding: 0.875rem;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
  }
  
  .auth-btn:hover {
    background-color: #cc0000;
  }
  
  .error-message {
    color: #FF0000;
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }

  /* Add these styles to your CSS */
.phone-input-group {
    display: flex;
    align-items: center;
  }
  
  .country-code {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    padding: 0.75rem 0.5rem;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
  }
  
  .phone-input-group input {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  
  .resend-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
    font-size: 0.875rem;
  }
  
  .link-btn {
    background: none;
    border: none;
    color: #FF0000;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
  }
  
  .hidden {
    display: none !important;
  }
  
  /* Success toast */
  .success-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background-color: #0CFF7F;
    color: #111111;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: bold;
    z-index: 9999;
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
  }
  
  .success-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  
  /* Error message */
  .error-message {
    background-color: rgba(255, 0, 0, 0.1);
    color: #FF0000;
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }
  
  /* Profile completion */
  .profile-completion {
    background-color: rgba(0, 0, 0, 0.8);
    border: 2px solid #FF0000;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .profile-completion h2 {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .profile-completion p {
    text-align: center;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
  }