.wrapper-container {
    max-width: 1600px;
    margin: 0 auto;
}

/* Arial font for form */
#leadFormSection {
    font-family: Arial, sans-serif !important;
}

#leadFormSection input,
#leadFormSection select,
#leadFormSection label,
#leadFormSection button,
#leadFormSection span,
#leadFormSection p,
#leadFormSection .custom-dropdown,
#leadFormSection .dropdown-option,
#leadFormSection #waterFilterText,
#leadFormSection #waterFilterDisplay {
    font-family: Arial, sans-serif !important;
}

#leadFormSection input::placeholder {
    font-family: Arial, sans-serif !important;
}

/* Checkbox styling */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    border: 3px solid #ffffff;
    outline: 2px solid #007935;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    background-color: white;
    transition: all 0.2s ease;
}

input[type="checkbox"]:checked {
    background-color: #007935;
    border-color: #ffffff;
}

/* Placeholder styling */
input::placeholder {
    color: #CACACA !important;
    font-weight: bold !important;
}

select option:disabled {
    color: #CACACA !important;
    font-weight: bold !important;
}

/* Dropdown styling */
#waterFilter {
    background-color: white !important;
}

/* Dropdown options container styling */
select option {
    padding: 8px 12px;
    background-color: white;
    color: black;
}

select option:not(:last-child) {
    border-bottom: 1px solid #DBDBDB;
}

/* Style the select when focused/open */
select:focus {
    border-color: #007935 !important;
    outline: none;
}

/* Dropdown container border */
select {
    border: 2px solid #007935 !important;
}

/* Custom styling for dropdown when open */
select:focus,
select:active {
    border: 2px solid #007935 !important;
}

/* Ensure placeholder option is bold */
#waterFilter option:disabled {
    font-weight: bold !important;
    color: #CACACA !important;
}

/* Custom Dropdown Styling */
.custom-dropdown {
    position: relative;
}

#waterFilterDisplay {
    transition: all 0.2s ease;
}

#waterFilterDisplay:focus {
    outline: none;
    box-shadow: 0 0 0 2px #007935;
}

#waterFilterOptions {
    max-height: 200px;
    overflow-y: auto;
}

.dropdown-option {
    transition: background-color 0.2s ease;
}

.dropdown-option:hover {
    background-color: #E3F2FD !important;
}

.dropdown-option:last-child {
    border-bottom: none !important;
}

.custom-dropdown.open #waterFilterDisplay {
    border-color: #007935;
}

#waterFilterText.selected {
    color: black;
    font-weight: normal;
}

/* Helvetica font classes */
.font-helvetica {
    font-family: Helvetica, Arial, sans-serif;
}

/* Benefit section styles */
.benefit-separator {
    width: 1px;
    height: 100%;
    background-color: #A2A2A2;
}

.benefit-separator-horizontal {
    width: 100%;
    height: 1px;
    background-color: #A2A2A2;
}

.bg-benefits {
    background-color: #F7F7F7;
}

/* Disabled resend button styling */
#resendCode:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

@media(min-width: 850px) and (max-width: 992px) {
    .step-card {
        max-width: 180px !important;
        margin-left: 10px !important;
    }

    .step-card:last-child {
        max-width: 150px !important;
    }
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}