  .hero-content {
    text-align: center; 
  }

  .registercontainer {
    width: 90%; 
    max-width: 400px; 
    margin: 20px auto; 
    margin-left: 160px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); 
    border-radius: 8px;
  }
  
@media (max-width: 768px) {

    .registercontainer {
        width: 90%; 
        max-width: 400px; 
        margin: 20px auto; 
        margin-left: 20px;
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.8); 
        border-radius: 8px;
    }
    
}
  #multiStepForm {
    /* Adjust form styles for mobile if needed */
  }

  .step {
    /* Adjust step styles for mobile if needed */
    text-align: left; /* Align form elements to the left within the step */
  }

  .step h3 {
    font-size: 1.5em; /* Adjust heading size */
    margin-bottom: 15px;
    text-align: center; /* Center the heading within the form */
  }

  .step label {
    display: block; /* Make labels take full width */
    margin-bottom: 10px;
    color: #333; /* Adjust label color */
    text-align: left !important; /* Override any inline styles */
  }

  .step input[type="email"],
  .step input[type="text"] {
    width: calc(100% - 20px); /* Make input fields take full width with padding */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
  }

  .send-otp-btn {
    display: block; /* Make the button take full width */
    width: 100%;
    padding: 12px;
    background-color: #007bff; /* Example button color */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
  }

  .send-otp-btn:hover {
    background-color: #0056b3;
  }

  .step > div { /* Style the acceptance text */
    font-size: 0.8em;
    color: #555;
    text-align: center;
    margin-top: 10px;
  }

  .navbar-brand img {
    margin-left: 10px !important; /* Reduce or remove left margin for logo on mobile */
    height: 40px !important; /* Adjust logo height for mobile */
  }

  .navbar-toggler {
    /* Adjust toggler styles if needed */
  }

  .navbar-collapse {
    /* Adjust navbar collapse styles if needed */
  }

  .navbar-nav {
    /* Adjust navbar navigation styles if needed */
  }
}