
    body {
      margin: 0;
      background: #f7f7f7;
      color: #222;
    }

    .page-container {
      margin: 0 auto;
    }

    .white-wrapper {
      background: #fff;
      padding: 24px;
      border-radius: 8px;
      box-sizing: border-box;
    }

   .required {
      color: red;
      font-weight: bolder;
      font-size: x-large;
      margin-left: 4px;
      position: relative;
      top: 4px;
    }

    .form-label{
      font-size: 12px;
      line-height: 15px;
      display: flex;
      color: #666;
      font-family: sans-serif;
      flex-direction: row;
      align-items: center;
      margin-bottom: 5px;
    }

    input, select {
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 4px;
      box-sizing: border-box;
    }

    select {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      border: 1px solid #ccc;
      border-radius: 6px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 15px center;
      background-size: 10px;
      height: 40px;
    }
    h2{  
      font-family: 'Roboto', Helvetica, Arial, Lucida, sans-serif !important;
      color: #333;
      padding-bottom: 10px;
      line-height: 1em;
      font-weight: 500;
      font-size: 40px;
    }

  .select-placeholder {
    color: #6c757d;
  }

  select option {
    color: #000;
  }

  select option[value=""] {
    color: #6c757d;
  }

  button.et_pb_promo_button {
    display: block;
    background: #f58221;
    border: none !important;
    padding: 10px 16px !important;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
    box-shadow: 0px 15px 28px -5px rgba(111, 111, 111, 0.45);
    -webkit-box-shadow: 0px 15px 28px -5px rgba(111, 111, 111, 0.45);
    border-radius: 10px !important;
    border: none !important;
  }

  button.et_pb_promo_button:hover { background-color: #ff6c00 !important; }

  
  .loading-spinner.spin {
    display: inline-block; 
    transform-origin: 50% 50%;
    animation: spin 0.8s linear infinite;
  }

  @keyframes spin {
    to { transform: rotate(360deg); }
  }