.form-content {
    width:450px;
    border-radius: var(--border-radius-10);
    background: var(--light-black-color);
    backdrop-filter: blur(10px);           
    -webkit-backdrop-filter: blur(10px);   
    padding:35px;
}
@media(max-width: 767px) {
    .form-content {
        width: 90%;
        padding:15px;
    }
}

input[type="text"], 
input[type="number"],
input[type="file"],
input[type="password"],
input[type="email"],
input[type="datetime-local"],
input[type="date"],
select, textarea {
    outline: none !important;
    width: 100%;
    padding: 10px;
    background: var(--black-color);
    backdrop-filter: blur(10px);           
    -webkit-backdrop-filter: blur(10px);   
    border-radius: var(--border-radius-10);
    font-size: 16px;
    transition: var(--transition);
    border: none;
    color: var(--light-white-color) !important;
}

select {
    appearance: none;          /* Standard */
    -webkit-appearance: none;  /* Chrome, Safari */
    -moz-appearance: none;     /* Firefox */
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 14px 48px 14px 16px; /* space for arrow */
    border-radius: 12px;
    background-color: var(--light-black-color);
    color: var(--light-white-color);
    border: none;
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
}


select option {
    background: var(--light-black-color);
    color: var(--light-dark-color);
    padding: 10px;
}

input::placeholder, textarea::placeholder {
    color: var(--light-grey-color) !important;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.checkbox-container input[type="checkbox"] {
    accent-color: var(--light-orange-color) !important; 
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.checkbox-container label {
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s;
}
/* 1. Hide the default Bootstrap/Select2 arrow so we can use yours */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

/* 2. Style the main selection box to match your design */
.select2-container--default .select2-selection--single {
    width: 100% !important;
    height: auto !important; /* Allows padding to define height */
    padding: 10px 16px; /* Adjusted to balance with the 14px padding feel */
    border-radius: 12px !important;
    background-color: var(--black-color) !important;
    border: none !important;
    outline: none !important;
    
    /* Your custom arrow SVG */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-size: 14px !important;
    display: flex;
    align-items: center;
}

/* 3. Style the text inside the box */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--light-white-color) !important;
    padding-left: 0 !important;
    line-height: 1.5;
    font-size: 14px;
}

/* 4. Style the dropdown menu and search field */
.select2-dropdown {
    background-color: var(--light-black-color) !important;
    border: 1px solid #333 !important;
    border-radius: 12px !important;
    color: var(--light-white-color);
    overflow: hidden;
}

.select2-search__field {
    background-color: #222 !important;
    color: var(--light-white-color) !important;
    border: 1px solid #444 !important;
    border-radius: 8px !important;
    margin-top: 5px;
}

/* 5. Highlight color for items */
.select2-results__option--highlighted[aria-selected] {
    background-color: #333 !important; /* Or your primary theme color */
    color: var(--light-white-color) !important;
}
.grey-links {
  text-decoration: none;
  color: var(--light-orange-color);
  font-weight: 600;
}
.grey-links:hover {
  text-decoration: underline;
  color: var(--light-orange-color);
}
.validation-rules {

  list-style: none;
  padding: 0;
}
.validation-rules li {
  margin: 5px 0;
  font-size: small !important;
}
.invalid {
  color: var(--grey-color);

}
.valid {
  color: var(--green-color);
}
.validation-rules .count {
  
  font-weight: bold;
}