 body {
     font-family: 'Roboto', sans-serif;
 }

 /* Header sections */
 .section-title {
     background-color: #01743B;
     color: white;
     padding: 10px 15px;
     font-weight: 400;
     text-align: center;
 }
 


 /* Form field focus effect */
 .form-control:focus {
     border-color: #01743B;
     box-shadow: 0 0 5px rgba(46, 73, 106, 0.5);
 }

 label {
     font-weight: 400;
     font-family: 'Roboto', sans-serif;

 }

 .note {
     font-size: 12px;
     color: #777;
     margin-top: -8px;
     margin-bottom: 10px;
 }

 h2 {
     text-align: center;
     margin: 20px 0;
     font-weight: bold;
 }

 /* Form Container */
 .form-container {
     max-width: 99%;
     margin: 50px auto;
     padding: 20px;
     padding-bottom: 60px;
     background-color: #ffffff;
     border-radius: 2px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     overflow: hidden;
 }

 #form-steps-wrapper {
     position: relative;
     width: 100%;
     overflow: hidden;
 }

 .form-step {
     width: 100%;
     position: absolute;
     top: 0;
     left: 100%;
     opacity: 0;
     transition: all 0.9s ease;
 }

 .form-step.active {
     left: 0;
     opacity: 1;
     position: relative;
 }

 .form-check-input:checked {
     background-color: #01743B;
     border-color: #01743B;
 }

 .form-check-input:focus {
     outline: 2px solid #01743B;
 }

 #form-navigation {
     margin-top: 40px;
 }

 #proff_represent_section {
     margin-top: 25px;
 }

 /* shift radio (checkbox style) inside - away from left border */
 #proff_represent_section .form-check-input {
     margin-left: 8px;
 }

 /* align label properly more right */
 #proff_represent_section .form-check-label {
     margin-left: 6px;
 }

 /* move consent checkbox inside slightly */
 .form-check .form-check-input {
     margin-left: 8px;
 }

 .form-check .form-check-label {
     margin-left: 6px;
 }

 /* Show normal dropdown arrow */
 select.form-control {
     appearance: auto;
     -webkit-appearance: auto;
     -moz-appearance: auto;
 }

 /* Radio look like checkbox */
 .form-check-input[type="radio"] {
     appearance: none;
     -webkit-appearance: none;
     width: 18px;
     height: 18px;
     border-radius: 4px;
     position: relative;
     cursor: pointer;
     margin-right: 6px;
 }

 /* checkmark when selected */
 .form-check-input[type="radio"]:checked::after {
     content: "✔";
     color: white;
     font-size: 12px;
     font-weight: bold;
     position: absolute;
     top: -1px;
     left: 2px;
 }

 .form-check-input[type="radio"]:checked {
     background: #01743B;
     border-color: #01743B;
 }

/* ✅ Match Select2 dropdown height with normal textboxes */
.select2-container--default .select2-selection--single {
    height: 38px !important; /* match your input box height */
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px !important; /* centers the text vertically */
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px !important; /* keeps the arrow aligned */
}

/* ✅ Hover and focus border for Select2 (same as textboxes) */
.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--single:hover,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #01743B !important;
    box-shadow: 0 0 5px rgba(46, 73, 106, 0.5) !important;
    outline: none !important;
}

/* Keep green border when the dropdown is active/open */
.select2-container--open .select2-selection--single {
    border-color: #01743B !important;
}
 p.text-end a {
     text-decoration: none;
     font-size: 17px;
     display: inline-block;
     margin-right: 20px;
     color: #01743B;

 }

 p.text-end a:hover {
     text-decoration: underline;
 }

 /* ✅ RADIO BUTTON ALIGNMENT FIX */
 .form-check {
     display: flex;
     align-items: flex-start;
     gap: 8px;
     margin-bottom: 6px;
 }

 .form-check-input[type="radio"] {
     margin-top: 3px;
     flex-shrink: 0;
     accent-color: #01743B;
     /* your theme green */
     transform: scale(1.1);
 }

 .form-check-label {
     font-size: 15px;
     line-height: 1.4;
     margin: 0;
     padding: 0;
     word-break: break-word;
 }

 /* Align consent checkbox with radio buttons */
 .consent-container {
     display: flex;
     align-items: flex-start;
     gap: 8px;
     margin-left: 0;
     margin-top: 8px;
     padding-left: 8px;
     /* Match same left padding as radio buttons */
 }

 #err_consent,
 .consent-container {
     margin-left: 28px;
     /* perfectly aligns with the radio inputs */
 }


.consent-container input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 3px;
    accent-color: #01743B;
    transform: scale(1.45); 
}


 .consent-container label {
     font-size: 15px;
     line-height: 1.5;
     margin: 0;
     padding: 0;
 }


 .submit-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(to bottom, #1fa15e 0%, #01743B 100%);
     color: white;
     font-size: 20px;
     font-weight: bold;
     border: none;
     border-radius: 40px;
     padding: 12px 25px 12px 30px;
     cursor: pointer;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
     transition: all 0.3s ease;
 }

 .submit-btn:hover {
     background: linear-gradient(to bottom, #32c374 0%, #0ea057 100%);
     transform: translateY(-2px);
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
 }

 .submit-btn:active {
     transform: translateY(1px);
     box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
 }

 /* The circular part on the right */
 .circle {
     background: white;
     border-radius: 50%;
     width: 28px;
     height: 28px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-left: 12px;
     box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
 }

 /* Play triangle inside the circle */
 .triangle {
     width: 0;
     height: 0;
     border-left: 10px solid #01743B;
     border-top: 6px solid transparent;
     border-bottom: 6px solid transparent;
     margin-left: 3px;
 }


 .section-title {
     white-space: nowrap;
 }

 @media(max-width:576px) {
     .section-title {
         white-space: normal !important;
     }
 }

 .loader {
     border: 8px solid #f3f3f3;
     border-top: 8px solid #3498db;
     border-radius: 50%;
     width: 60px;
     height: 60px;
     margin: 20% auto;
     animation: spin 1s linear infinite;
 }

 @keyframes spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }