* {
    margin: 5px;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Unbounded', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #7A00D2 !important;
    padding: 20px;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-container h1 {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

.form {
    display: flex;
    flex-direction: column;
}

.form p {
    margin-bottom: 15px;
}

.form input, .form select, .form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.btn-submit {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #23C062;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.btn-submit:hover {
    background-color: #7A00D2;
}

.errorlist {
    color: red!important;
    margin-bottom: 15px!important;
}

.alert {
    margin-top: 20px !important;
    padding: 10px!important;
    background-color: #f8d7da!important;
    color: #721c24!important;
    border: 1px solid #f5c6cb!important;
    border-radius: 4px!important;
}

.thank-you-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin: 50px auto;
    text-align: center;
}

.thank-you-container h1 {
    margin-bottom: 20px;
    font-size: 24px;
}

.btn-home {
    padding: 10px 20px;
    background-color: #23C062;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
}

.btn-home:hover {
    background-color: #7A00D2
}

.c-dropdown {
    position: relative;
    width: 250px;
}
.c-dropdown-toggle {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    background: #efefef;
}
.c-dropdown-menu {
   /*position: absolute;*/
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    display: none;
    max-height: 200px;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .c-dropdown-menu {
        width: 90%; /* Adjust width for smaller screens */
        font-size: 14px; /* Reduce font size for better readability */
    }
}

@media (max-width: 480px) {
    .c-dropdown-menu {
        width: 100%; /* Full width for very small screens */
        max-height: 150px; /* Reduce max height for smaller screens */
    }
}
.show {
    display: block !important;
    border-radius: 5px;
}

.c-dropdown-menu label {
    display: block;
    padding: 8px;
    cursor: pointer;
}




.c-dropdown-menu input {
    display: block;
    margin-bottom: -20px;
}

.c-dropdown-menu label:hover {
    background: #f0f0f0;
}
.selected-options {
    margin-top: 9px;
}
.chip {
    background:#23C062;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px;
}
.chip span {
    cursor: pointer;
}


#dropdown-2 {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

#dropdown-2.show {
    display: block !important;
}

.modal-box {
    padding: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}


.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
  
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
  
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #4d4747;
    transition: .4s;
    border-radius: 34px;
}
  
.slider:before {
    position: absolute;
    content: "";
    height: 25px;
    width: 25px;
    left: 4px;
    bottom: 0px;
    background-color: #e4dfe8;
    transition: .4s;
    border-radius: 50%;
}
  
  input:checked + .slider {
    background-color: #23C062;
}
  
  input:checked + .slider:before {
    transform: translateX(26px);
}

