 .form-field-container {
     margin-bottom: 15px;
 }

 .form-field-container input[type="text"],
 .form-field-container textarea,
 .select2-container--default .select2-selection--single,
 .select2-container--default .select2-selection--multiple {
     width: 100%;
     padding: 10px;
     box-sizing: border-box;
     border: 1px solid #ccc;
     border-radius: 4px;
     min-height: 0px;
     font-size: 14px;
     height: auto;
 }

 .select2-container--default .select2-search--inline .select2-search__field {
     margin: 0;
 }

 select {
     width: 100%;
 }


 .privacy-container {
     margin-top: 20px;
     font-size: 0.9em;
 }

 .radio-group label {
     margin-right: 15px;
     font-weight: normal;
 }

 /* ✔ CUSTOM SUBMIT BUTTON LIKE YOUR IMAGE */
 input[type="submit"] {
     background-color: #00AEEF;
     border: none;
     padding: 12px 30px;
     color: white;
     font-size: 20px;
     border-radius: 6px;
     cursor: pointer;
     font-weight: bold;
 }

 input[type="submit"]:hover {
     opacity: 0.9;
 }

 /* ✔ HIDDEN THANK YOU MESSAGE */
 #thankyou {
     display: none;
     padding: 20px;
     margin-top: 20px;
     font-size: 20px;
     font-weight: bold;
     background: #e9f8ff;
     border-left: 5px solid #00AEEF;
 }

 * {
     font-family: Inter, sans-serif;
 }

 .radio-group {
     display: flex;
     align-items: center;
     gap: 5px;
     justify-content: flex-start;
 }