body {
    font-family: "Cinzel", serif;
    background-color: #1a1a1a;
    color: #d4af37;
  }
  
  .card {
    background-color: #2a2a2a;
    border: 1px solid #d4af37;
    border-radius: 10px;
  }
  
  .card-header {
    background-color: #d4af37;
    color: #1a1a1a;
    font-weight: bold;
    border-bottom: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  
  .form-control {
    background-color: #333333;
    border: 1px solid #d4af37;
    color: #d4af37;
  }
  
  .form-control:focus {
    background-color: #444444;
    border-color: #ffd700;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    color: #ffd700;
  }
  
  .btn-primary {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #1a1a1a;
  }
  
  .btn-primary:hover {
    background-color: #ffd700;
    border-color: #ffd700;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .text-muted {
    color: #a0a0a0 !important;
  }
  
  .invalid-feedback {
    color: #ff6b6b;
  }
  
  .form-check-input {
    background-color: #333333;
    border-color: #d4af37;
  }
  
  .form-check-input:checked {
    background-color: #d4af37;
    border-color: #d4af37;
  }
  
  .form-select {
    background-color: #333333;
    border: 1px solid #d4af37;
    color: #d4af37;
  }
  
  .form-select:focus {
    background-color: #444444;
    border-color: #ffd700;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    color: #ffd700;
  }
  
  .auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
  }
  
  .auth-card {
    background-color: rgba(34, 34, 34, 0.9);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  }
  
  .auth-card h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .auth-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
  }
  
  .auth-card p {
    margin-bottom: 1rem;
  }
  
  .auth-form .form-group {
    margin-bottom: 1.5rem;
  }
  
  .auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
  }
  
  .auth-form input[type="text"],
  .auth-form input[type="email"],
  .auth-form input[type="password"],
  .auth-form input[type="file"],
  .auth-form select,
  .auth-form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--primary);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 5px;
  }
  
  .auth-form input[type="text"]:focus,
  .auth-form input[type="email"]:focus,
  .auth-form input[type="password"]:focus,
  .auth-form input[type="file"]:focus,
  .auth-form select:focus,
  .auth-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
  }
  
  .auth-form .btn-primary {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
  }
  
  .auth-form .text-muted {
    color: #999;
    font-size: 0.9rem;
  }
  
  .auth-form .invalid-feedback {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.25rem;
  }
  
  .text-success {
    color: #28a745;
  }
  
  .text-center {
    text-align: center;
  }
  
  .mt-4 {
    margin-top: 1.5rem;
  }
  
  .mb-4 {
    margin-bottom: 1.5rem;
  }
  
  /* Add some spacing between form elements */
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  /* Style select dropdown */
  select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23D4AF37' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    padding-right: 2rem;
  }
  
  /* Adjust the button style for Razorpay */
  #rzp-button1 {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
  }
  
  /* Improve button hover effect */
  .btn-primary:hover {
    background-color: #ffd700;
    border-color: #ffd700;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  