* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }
  body,
  html {
    width: 100%;
    overflow-x: hidden;
  }
  input {
    outline: none;
  }
  input:focus {
    outline: 1px solid orange;
  }
  section#register {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
    padding-top: 20px;
  }
  div.container {
    width: 100%;
    /* overflow: hidden; */
    /* text-align: center; */
    padding: 0 20px;
  }
  div.heading-box {
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 48px;
    position: relative;
    margin-bottom: 15px;
    max-width: 80%;
    margin: auto;
  }
  .heading-box h1 {
    font-size: 2rem;
    text-align: center;
    font-size: 32px;
    color: #313131;
    font-weight: 600;
  }
  .heading-box img {
    /* width: 50px; */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -24%;
  }
  .form-box {
    width: 30%;
    margin: 30px auto 0;
    padding: 10px;
  }
  #phoneLabel {
    font-size: 17px;
    display: block;
    color: #616161;
    margin-bottom: 8px;
  }
  
  #myForm button {
    display: block;
    font-size: 0.9rem;
    width: 100%;
    padding: 0.6em 0;
    background-color: orange;
    border: none;
    border-radius: 7px;
    cursor: pointer;
  }
  .iti {
    width: 100%;
  }
  #phone {
    width: 100%;
    height: 40px;
    font-size: 16px;
    padding-left: 60px; /* Add space for the flag dropdown */
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  button:disabled {
    background-color: #ccc;
    pointer-events: none; /* Prevent clicking */
    cursor: pointer; /* Show pointer cursor */
    opacity: 0.6; /* Optional: To visually indicate it's disabled */
  }
  
  #mobileError {
    font-size: 0.8rem;
  }
  #validationError {
    font-size: 1rem;
    text-align: center;
  }
  #checkBox {
    display: flex;
    margin: 25px 0;
    font-size: 0.8rem;
    gap: 6px;
  }
  .fa-arrow-right {
    font-size: 0.9rem;
    padding-left: 3px;
  }
  
  @media (max-width: 1120px) {
    .form-box {
      width: 50%;
    }
  }
  
  @media (max-width: 750px) {
    .form-box {
      width: 100%;
    }
  }
  @media (max-width: 578px) {
    .heading-box h1 {
      font-size: 1.5rem;
    }
    .heading-box img {
      width: 50px;
    }
  }