
    .umai-hire-form {
      background: #fff;
      padding: 25px;
      max-width: 700px;
      margin: auto;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      border: 1px solid #ccc;
       margin-bottom: 30px;
    }
    .umai-hire-form h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #3e3e3e;
    }
    .form-row {
      display: flex;
      gap: 20px;
      
    }
    .form-group {
      flex: 1;
      margin-top: 15px;
      
    }
    label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;
      font-size: 12px;
    }
 
    input, select, textarea {
      border: 1px solid #ccc;
      border-radius: 4px;
      width: 100%;
      padding: 10px;
      background-color: #ffffff;
   
    }
    textarea {
      resize: vertical;
    }

    textarea:focus,
    select:focus {
    background-color: #ffffff;
    border-color: #15887c;
  
    outline: none;
}
    .umai-hire-btn {
      margin-top: 20px;
      padding: 12px 10px;
      background-color: #2e6c8a;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      width: 100%;
      font-size: 16px;

    }
    .umai-hire-btn:hover {
      background-color: #327799;
    }
    @media (max-width: 600px) {
      .form-row {
        flex-direction: column;
      }
    }