﻿/* Registration Form Styles */
#registration-form-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #333;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Typography */
.registration-title {
    color: #003087;
    text-align: center;
    margin-bottom: 24px;
    font-size: 28px !important;
    font-weight: bold;
}

.registration-form h2 {
    color: #003087;
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: bold;
    background: none;
}

.registration-form h3 {
    color: #003087;
    margin: 20px 0 10px;
    font-size: 20px;
    font-weight: bold;
}

.step-description {
    color: #666;
    margin-bottom: 24px;
    font-size: 16px;
}

.field-help {
    color: #777;
    font-size: 13px;
    margin-top: -5px;
    margin-bottom: 5px;
    display: block;
    width: 100%;
}

/* Progress bar */
.registration-progress {
    margin-bottom: 40px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-weight: bold;
}

.step.active .step-circle {
    background-color: #ab2328;
    color: white;
}

.step.completed .step-circle {
    background-color: #6cc24a;
    color: white;
    cursor: pointer;
}

.step-text {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-align: center;
}

.step.active .step-text {
    color: #ab2328;
}

.step.completed .step-text {
    color: #6cc24a;
}

.progress-bar-container {
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    position: relative;
    margin-top: 10px;
}

.progress-bar {
    position: absolute;
    height: 100%;
    background-color: #003087;
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
}

/* Form styles */
.registration-form {
    background-color: #f8f8f8;
    padding: 24px;
    border-radius: 6px;
}

.form-step {
    display: none;
}

#step-1 {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #444;
}

.form-label {
    width: fit-content;
    display: inline;
}

.form-controlOrgOther {
    width: 94% !important;
}

.required {
    color: #ab2328;
    padding-left: 3px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

textarea {
    height: 120px;
    resize: vertical;
}

    input:focus,
    select:focus,
    textarea:focus {
        outline: none;
        border-color: #003087;
        box-shadow: 0 0 0 2px rgba(0, 48, 135, 0.2);
    }

.checkbox-item, .radio-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

    .checkbox-item input[type="checkbox"],
    .radio-item input[type="radio"] {
        margin-right: 10px;
    }

.checkbox-list, .radio-group {
    margin-top: 8px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

    .checkbox-wrapper input[type="checkbox"] {
        margin-right: 10px;
        width: auto;
        min-width: 16px;
        height: 16px;
        position: static; /* Ensures the checkbox isn't positioned outside the container */
    }

.checkbox-group {
    margin-bottom: 20px;
    display: block; /* Change from flex to block */
    width: 100%;
}

/* Custom checkbox styling */
.custom-checkbox-container {
    margin-bottom: 20px;
    width: 100%;
    padding: 5px 0;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    padding-left: 30px;
}

    .custom-checkbox input {
        position: absolute;
        opacity: 0;
        height: 0;
        width: 0;
        cursor: pointer;
    }

.checkbox-icon {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.custom-checkbox:hover input ~ .checkbox-icon {
    background-color: #f5f5f5;
}

.custom-checkbox input:checked ~ .checkbox-icon {
    background-color: #003087;
    border-color: #003087;
}

.checkbox-icon:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkbox-icon:after {
    display: block;
}

.custom-checkbox .checkbox-icon:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    margin-left: 5px;
}

/* Days and hours table */
.days-table {
    width: 100%;
    margin-top: 15px;
}

.days-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
}

.day-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 10px;
    align-items: center;
}

.day-check {
    display: flex;
    align-items: center;
}

.time-select {
    width: 90%;
}

/* Service area tags */
.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.area-tag {
    background-color: #e0e0e0;
    border-radius: 16px;
    padding: 4px 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.remove-tag {
    margin-left: 8px;
    cursor: pointer;
    color: #666;
}

    .remove-tag:hover {
        color: #ab2328;
    }

/* Review section */
.review-section {
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 20px;
    overflow: hidden;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f5f5f5;
    padding: 12px 16px;
    border-bottom: 1px solid #ddd;
}

    .review-header h3 {
        margin: 0;
        font-size: 18px;
    }

.review-content {
    padding: 16px;
}

.review-item {
    display: flex;
    margin-bottom: 8px;
}

.review-label {
    font-weight: 500;
    width: 30%;
    color: #555;
}

.edit-btn {
    background-color: transparent;
    color: #003087;
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
}

    .edit-btn:hover {
        text-decoration: underline;
    }

/* Terms section */
.terms-section {
    margin-top: 30px;
}

.terms-box {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 20px;
}

.terms-content {
    height: 250px;
    overflow-y: auto;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f8f8f8;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

/* Navigation buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: none;
}

.btn-primary {
    background-color: #003087;
    color: white;
    width: 140px;
}

    .btn-primary:hover {
        background-color: #001f54;
    }

.btn-secondary {
    background-color: white;
    color: #003087;
    border: 1px solid #003087;
    width: 140px;
}

    .btn-secondary:hover {
        background-color: #f5f5f5;
    }

    .btn-secondary:disabled {
        background-color: #e0e0e0;
        color: #999;
        border-color: #ccc;
        cursor: not-allowed;
    }

.btn-submit {
    background-color: #ab2328;
    color: white;
}

    .btn-submit:hover {
        background-color: #8a1c21;
        color: white;
    }

.add-area-btn {
    padding: 10px 15px;
    margin-left: 10px;
}

.btn-text {
    background: none;
    border: none;
    color: #003087;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    margin: 20px auto 0;
}

.section-divider {
    height: 1px;
    background-color: #ddd;
    margin: 30px 0;
}

.save-progress {
    text-align: center;
    margin-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .step-text {
        display: none;
    }

    .progress-steps {
        margin-bottom: 20px;
    }

    .days-header, .day-row {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .review-item {
        flex-direction: column;
    }

    .review-label {
        width: 100%;
        margin-bottom: 4px;
    }
}


/* Dual Select Box Styles */
.dual-select-container {
    margin-bottom: 30px;
}

.dual-select-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

    .dual-select-labels label {
        flex: 1;
        text-align: center;
        font-weight: 600;
    }

.dual-select-boxes {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dual-select {
    flex: 1;
    height: 200px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px;
    overflow-y: auto;
}

    .dual-select option {
        padding: 8px;
        margin-bottom: 2px;
        border-radius: 2px;
    }

        .dual-select option:hover {
            background-color: #f0f0f0;
        }

.dual-select-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dual-select-btn {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
}

    .dual-select-btn:hover {
        background-color: #e0e0e0;
    }

/* Improve checkbox display */
.checkbox-list {
    margin-top: 15px;
}

.checkbox-item {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

    .checkbox-item input[type="checkbox"] {
        margin-right: 10px;
        margin-top: 3px;
    }

/* Ensure textarea is responsive */
textarea.form-control {
    width: 100%;
    min-height: 150px;
    padding: 10px;
}

/* Add these specific styles for funding checkboxes */
.funding-checkbox-list {
    margin-top: 15px;
}

    .funding-checkbox-list br {
        line-height: 0 !important;
    }

.funding-checkbox-item {
    margin-bottom: 12px;
    display: flex !important;
    align-items: flex-start !important;
}

    .funding-checkbox-item input[type="checkbox"] {
        display: inline-block !important;
        opacity: 1 !important;
        position: static !important;
        margin-right: 10px !important;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        appearance: auto !important;
        -webkit-appearance: checkbox !important;
        -moz-appearance: checkbox !important;
    }

    .funding-checkbox-item label {
        display: inline !important;
        margin: 0 !important;
        padding: 0 !important;
        max-width: 90%;
    }
/* Location entry styles */
.location-entry-container {
    margin-bottom: 15px;
}

.location-entry-row {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 10px;
    align-items: center;
}

.location-list {
    margin-top: 15px;
}

.location-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f5f5f5;
    padding: 10px 15px;
    border: 1px dashed #222;
    border-radius: 4px;
    margin-bottom: 8px;
}

.location-data-item {
    font-weight: bold;
}

.location-remove {
    color: #ab2328;
    cursor: pointer;
    font-weight: bold;
    border: none;
    background-color: transparent;
}

/* Radio button styles */
.radio-group {
    margin-top: 8px;
}

/* Form grid for specific sections */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-grid, .location-entry-row {
        grid-template-columns: 1fr;
    }
}


/* Checkbox and radio styles */
.service-checkbox-list,
.hours-radio-group,
.schedule-radio-group {
    margin-top: 15px;
}


    .service-checkbox-list br {
        line-height: 0 !important;
    }

    .hours-radio-group br {
        line-height: 0 !important;
    }

    .schedule-radio-group br {
        line-height: 0 !important;
    }

.service-checkbox-item,
.hours-radio-item,
.schedule-radio-item {
    margin-bottom: 12px;
    display: flex !important;
    align-items: flex-start !important;
}

    .service-checkbox-item input[type="checkbox"],
    .hours-radio-item input[type="checkbox"],
    .schedule-radio-item input[type="checkbox"] {
        display: inline-block !important;
        opacity: 1 !important;
        position: static !important;
        margin-right: 10px !important;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        appearance: auto !important;
        -webkit-appearance: checkbox !important;
        -moz-appearance: checkbox !important;
    }

    /*.hours-radio-item input[type="checkbox"],
    .schedule-radio-item input[type="radio"] {
        -webkit-appearance: radio !important;
        -moz-appearance: radio !important;
    }
*/
    .service-checkbox-item label,
    .hours-radio-item label,
    .schedule-radio-item label {
        display: inline !important;
        margin: 0 !important;
        padding: 0 !important;
        max-width: 90%;
    }

/* Dual select box styles */
.dual-select-container {
    margin-bottom: 30px;
}

.dual-select-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

    .dual-select-labels label {
        flex: 1;
        text-align: center;
        font-weight: 600;
    }

.dual-select-boxes {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dual-select {
    flex: 1;
    height: 200px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px;
    overflow-y: auto;
}

    .dual-select option {
        padding: 8px;
        margin-bottom: 2px;
        border-radius: 2px;
    }

        .dual-select option:hover {
            background-color: #f0f0f0;
        }

.dual-select-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dual-select-btn {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
}

    .dual-select-btn:hover {
        background-color: #e0e0e0;
    }

/* Character count */
.character-count {
    text-align: right;
    font-size: 12px;
    color: #777;
    margin-top: 5px;
    display: block;
}

/* Checkbox styles */
.schedule-checkbox-list {
    margin-top: 15px;
}

.schedule-checkbox-item {
    margin-bottom: 12px;
    display: flex !important;
    align-items: flex-start !important;
}

    .schedule-checkbox-item input[type="checkbox"] {
        display: inline-block !important;
        opacity: 1 !important;
        position: static !important;
        margin-right: 10px !important;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        appearance: auto !important;
        -webkit-appearance: checkbox !important;
        -moz-appearance: checkbox !important;
    }

    .schedule-checkbox-item label {
        display: inline !important;
        margin: 0 !important;
        padding: 0 !important;
        max-width: 90%;
    }

/* Form grid adjustment */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group.wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.wide {
        grid-column: span 1;
    }
}

/* Subsection headings */
.form-group h4 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

/* Checkbox and radio styles */
.target-checkbox-list,
.class-radio-group {
    margin-top: 15px;
    margin-bottom: 15px;
}

    .target-checkbox-list br {
        line-height: 0 !important;
    }

.target-checkbox-item,
.class-radio-item {
    margin-bottom: 12px;
    display: flex !important;
    align-items: flex-start !important;
}

    .target-checkbox-item input[type="checkbox"],
    .class-radio-item input[type="radio"],
    .radio-group input[type="radio"] {
        display: inline-block !important;
        opacity: 1 !important;
        position: static !important;
        margin-right: 10px !important;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        appearance: auto !important;
        -webkit-appearance: checkbox !important;
        -moz-appearance: checkbox !important;
    }

    .class-radio-item input[type="radio"],
    .radio-group input[type="radio"] {
        -webkit-appearance: radio !important;
        -moz-appearance: radio !important;
    }

    .target-checkbox-item label,
    .class-radio-item label,
    .radio-group label {
        display: inline !important;
        margin: 0 !important;
        padding: 0 !important;
        max-width: 90%;
    }

/* Fee options styling */
.fee-options {
    margin-top: 15px;
}

.fee-option {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.fee-radio {
    display: flex;
    align-items: center;
    width: 300px;
}

.fee-radio-item {
    margin-bottom: 12px;
    display: flex !important;
    align-items: flex-start !important;
}

    .fee-radio-item input[type="radio"] {
        display: inline-block !important;
        opacity: 1 !important;
        position: static !important;
        margin-right: 10px !important;
        width: auto !important;
        visibility: visible !important;
        -webkit-appearance: radio !important;
        -moz-appearance: radio !important;
    }

.fee-notes {
    flex: 1;
    margin-left: 10px;
}

/* Verification section styling */
.verification-options {
    margin-top: 15px;
}

.verification-option {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.verification-label {
    display: flex;
    align-items: center;
    width: 175px;
}

.verification-answer {
    margin-bottom: 12px;
    display: flex !important;
    align-items: flex-start !important;
}

.verification-answer-item {
    margin-bottom: 12px;
    display: flex !important;
    align-items: flex-start !important;
}

    .verification-answer-item input[type="radio"] {
        display: inline-block !important;
        opacity: 1 !important;
        position: static !important;
        margin-right: 10px !important;
        width: auto !important;
        visibility: visible !important;
        -webkit-appearance: radio !important;
        -moz-appearance: radio !important;
    }

/* Form grid for specific sections */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .fee-option {
        flex-direction: column;
        align-items: flex-start;
    }

    .fee-notes {
        margin-left: 25px;
        margin-top: 10px;
        width: 100%;
    }
}

/* Review summary styles */
.review-summary {
    margin-bottom: 30px;
}

.review-section {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.review-header {
    background-color: #f5f5f5;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

    .review-header h3 {
        margin: 0;
        font-size: 18px;
    }

.edit-btn {
    background-color: transparent;
    color: #003087;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 3px;
}

    .edit-btn:hover {
        background-color: #e6e6e6;
        text-decoration: underline;
    }

.review-content {
    padding: 15px;
}

/* Terms agreement styles */
.terms-agreement {
    margin-bottom: 30px;
}

.terms-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    padding: 16px;
    margin-bottom: 20px;
}

.terms-header {
    padding: 15px;
    font-weight: bold;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

.terms-content {
    border-bottom: 1px solid #ddd;
    height: 250px;
    max-height: 400px;
    overflow-y: auto;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f8f8f8;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

    .terms-content p,
    .terms-content ul,
    .terms-content ol {
        margin-bottom: 15px;
    }

    .terms-content ul,
    .terms-content ol {
        padding-left: 20px;
    }

.terms-acceptance {
    padding: 15px;
}

.terms-content-dual-labels-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-direction: column;
}

.terms-content-dual-labels {
    min-height: 30px;
    display: flex;
    flex-direction: row;
    text-align: left;
    font-weight: bold;
    color: #003087;
}

.terms-content-dual-labels-left {
    width: 25%;
}

.terms-content-dual-labels-right {
    width: 75%;
}

/* Signature section */
.signature-section {
    padding: 15px;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
}

.signature-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

    .signature-row p {
        margin: 0;
    }

/* Form validation message */
.form-validation-message {
    background-color: #fce4e4;
    border: 1px solid #f8b6b6;
    color: #cc0033;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

.validation-content {
    display: flex;
    align-items: center;
}

    .validation-content p {
        margin: 0;
        font-weight: 600;
    }

/* Certifier info section */
.certifier-info {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
}

    .certifier-info p {
        margin: 5px 0;
    }

/* Radio buttons */
.certification-radio,
.publish-radio {
    margin-bottom: 10px;
}

    .certification-radio input[type="radio"],
    .publish-radio input[type="radio"] {
        -webkit-appearance: radio !important;
        -moz-appearance: radio !important;
    }

.certification-radio-item {
    margin-bottom: 12px;
    display: flex !important;
    align-items: flex-start !important;
}

    .certification-radio-item input[type="radio"] {
        display: inline-block !important;
        opacity: 1 !important;
        position: static !important;
        margin-right: 10px !important;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        appearance: auto !important;
        -webkit-appearance: checkbox !important;
        -moz-appearance: checkbox !important;
    }

    .certification-radio-item input[type="radio"] {
        -webkit-appearance: radio !important;
        -moz-appearance: radio !important;
    }

.certification-radio label {
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 90%;
    font-weight: bold;
}

/* Add a bit more space for the labels in the publish section */
.publish-radio-item {
    margin-bottom: 12px;
    display: flex !important;
    align-items: flex-start !important;
}

    .publish-radio-item input[type="radio"] {
        display: inline-block !important;
        opacity: 1 !important;
        position: static !important;
        margin-right: 10px !important;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        appearance: auto !important;
        -webkit-appearance: checkbox !important;
        -moz-appearance: checkbox !important;
    }

    .publish-radio-item input[type="radio"] {
        -webkit-appearance: radio !important;
        -moz-appearance: radio !important;
    }

    .publish-radio-item label {
        display: inline !important;
        margin: 0 !important;
        padding: 0 !important;
        max-width: 90%;
    }

.publish-radio-item-span {
    display: flex;
    align-items: center;
    width: fit-content;
}

.publish-radio label {
    line-height: 1.4 !important;
}

@media (max-width: 768px) {
    .signature-row {
        flex-direction: column;
        gap: 10px;
    }
}

/* Alert CSS*/
.alert {
    width: -webkit-fill-available;
}

.privacy-agreement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin-top: 10px;
}

.privacy-agreement-group {
    margin-bottom: 5px;
}

.privacy-agreement-dual-labels-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-direction: column;
}

.privacy-agreement-dual-labels {
    min-height: 30px;
    display: flex;
    flex-direction: row;
    text-align: left;
    font-weight: bold;
    color: #003087;
}

.privacy-agreement-dual-labels-left {
    width: 15%;
}

.privacy-agreement-dual-labels-right {
    width: 85%;
}

.previous-registration-search-form-container {
    /*border: 1px solid #e5e5e5;
    border-radius: 3px;
    margin-bottom: 10px;
    overflow: hidden;*/
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #333;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.previous-registration-search-form-title {
    color: #003087;
    text-align: center;
    margin-bottom: 20px;
    font-size: 26px !important;
    font-weight: bold;
    width: 98%;
}

.previous-registration-search-form-toggler {
    background-color: #fff;
    color: #425563;
    cursor: pointer;    
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

    .previous-registration-search-form-toggler .icon {
        margin-left: 15px;
        min-width: 20px;
        text-align: center;
    }

.previous-registration-search-form {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f8f8f8;
    border-radius: 6px;
}

.previous-registration-search-form-container.active .previous-registration-search-form {
    max-height: 1000px;
    padding: 20px 20px;
}
