
/* Style for the form container */
  .signup-container {
    max-width: 650px;
    width: 100%;
    height: 600px;
    background-color: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    margin: 30px auto;
    padding: 40px;
    border-radius: 5px;
    /* overflow-x: auto;  */
    overflow-y: scroll; /* Add vertical scrollbar */
  }

  .signup-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
  }

  /* Style for the form */
  .signup-container form {
    width: 100%;
  }

  /* Style for table */
  .signup-container table {
    width: 100%;
  }

  /* Style for table cells */
  .signup-container {
    padding: 15px;
  }

  /* Style for labels */
  .signup-container td label {
    font-weight: bold;
    /* color: #333; */
    padding-left: 8px;
  }

  .signup-container table .password-container {
    position: relative;
    display: inline-block;
    width: calc(100% );
  }
  .signup-container table .password-toggle {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }
  .signup-container table .password-toggle img {
    width: 20px; /* Adjust size as needed */
    height: auto;
    vertical-align: middle;
  }

  /* Style for inputs */
  .signup-container input[type="text"],
  .signup-container input[type="email"],
  .signup-container input[type="password"],
  .signup-container select,
  .signup-container textarea,
  .signup-container input[type="tel"] {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    padding: 10px;
    border: 0.5px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 5px;
  }

  /* Style for buttons */
  .signup-container button {
    width: 100%;
    padding: 8px 15px;
    background-color: #7d2ae8;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-top: 5px;
  }

  .signup-container button:hover {
    background-color: #5b13b9;
  }

  p{
    align-items: center;
  }

  .Terms-condition{
    padding: 20px ;
    text-align: justify;
    color: #000;
    font-size: 14px;
    line-height: 1.6;
  }
  
.Terms-condition p {
  margin-bottom: 20px;
}

.Terms-condition b {
  color: #3c86e7;
}

  /* responsiveness */

  /* Hide the email, password, OTP, and unique code rows on smaller devices */
  @media (max-width: 767px) {
    .signup-container {
      max-width: 500px;
      width: 100%;
    }

    .collapse-mobile {
      display: none;
      .object[data="../goracings/Terms and Conditions GoRacings.pdf"]{
        width: 100%; /* Set object width to 100% of its container on mobile */
        height: auto; /* Set object height to auto to maintain aspect ratio */
      }
    }

    .Terms-condition{
      padding:10px ;
      text-align: left;
      color: #000;
      font-size: 8px;
      line-height: 0.5;
    }
  }
