 .form-container { 
      padding: 0px;
      border-radius: 10px; 
    }

    .form-container h2 {
      margin-bottom: 20px;
      text-align: center;
      font-size: 26px;
    font-weight: bold;
    color: #282465;
    }

    .form-container form {
      display: flex;
      flex-direction: column;
    }
    /* .button {
  background: #c9942e !important;
} */
.form-container button[type="submit"]{
  background: linear-gradient(-90deg, rgba(231, 30, 37, 1) 0%, #282465 100%);
  color: #ffffff !important;padding: 10px 15px;
    border: 0;
}
    .form-container label {
      margin-bottom: 5px;
      font-weight: bold;
      color: #555;
    }

    .form-container input[type="text"],
    .form-container input[type="email"],
    .form-container input[type="password"] {
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }

    .form-container input[type="submit"] {
      background: #007bff;
      color: white;
      border: none;
      padding: 12px;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
    }

    .form-container input[type="submit"]:hover {
      background: #0056b3;
    }

    .form-toggle {
      text-align: center;
      margin-top: 15px;
      font-size: 14px;
      color: #282465;
      cursor: pointer;
    }


    
    /* Button to open modal */
    .open-btn {
      padding: 10px 20px;
      background-color: #007bff;
      color: white;
      border: none;
      cursor: pointer;
      border-radius: 5px;
    }

    /* Modal overlay */
    .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background: rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
    }

    /* Modal content */
    .modal-content {
      background-color: #fff;
      padding: 20px;
      width: 90%;
      max-width: 500px;
      border-radius: 10px;
      position: relative;
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { transform: scale(0.9); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    /* Close button */
    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      border: none;
      cursor: pointer;
      background: linear-gradient(-90deg, rgba(231, 30, 37, 1) 0%, #282465 100%);
    height: 35px;
    width: 35px;
    color: #fff !important;
    font-size: 26px;
    line-height: 0;
    border-radius: 5px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    }


    .terms p { margin-bottom: 30px; color: #fff; }

    .terms h2 {
                color: #eee5d7;
                font-size: 25px;
              }



  #loading {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0.9;
  background-color: #9f0505;
  z-index: 999999;
}

#loading-image {
  position: initial;
  margin-top: 215px;
}

 
 