body {
    background-color: #f8f9fa;
    font-family: system-ui, -apple-system, sans-serif;
}

.card-design {
    display: flex;
    justify-content: center;
    height: 100%;
    text-align: center;
    background: linear-gradient(90deg, #3876cc, #22ceee);

}

.registration-button {
    /* margin-top: 50px; */
    width: 100%;
    background: linear-gradient(90deg, #3876cc, #22ceee);
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 15px;
    font-weight: 600;
}

.registration-button:hover {
    background: linear-gradient(90deg, #02848d, #22ceee);
}

.multiselect-container {
    position: relative;
    width: 100%;
}

.multiselect-box {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    padding: 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    min-height: 45px;
    background: #fff;
    cursor: pointer;
}

.multiselect-box .tag {
    background: #2E9FDC;
    font-weight: bold;
    color: white;
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.multiselect-box .tag i {
    margin-left: 0.25rem;
    cursor: pointer;
}

.options-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    background-color: white;
    color: black;
    border: 1px solid #ced4da;
    border-top: none;
    z-index: 1000;
    display: none;
    box-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
}

.options-list .option {
    cursor: pointer;
    position: relative;
    padding: 0.5rem;
    transition: 0.3s ease-in-out;

}

.options-list .option:hover {
    background-color: royalblue;
    color: white;
}

.sub-options {
    display: none;
    position: unset;
    top: 0;
    left: 100%;
    color: black;
    background: white;
    border: 0px solid #ced4da;
    min-width: 200px;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
}

.option.active .sub-options {
    display: block;
}

.sub-options div {
    padding: 0.5rem;
    border-bottom: 1px solid white;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.sub-options div:hover {
    display: block;
    background: royalblue;
    color: white;
}

/* Button design Add Language  */
.add-language {
    margin-top: 20px;
    background-color: #0d6efd;
    color: white;
    padding: 8px 30px;
    border: 1px solid #5a5757;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.5s ease-in-out;
}

.add-language:hover {
    background-color: white;
    color: black;
}

.certificate-upload {
    border: 2px dashed #d3d3d3;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
}

.certificate-upload:hover {
    background-color: #f8f9fa;
}

/* Subcategory Form  none */
.dynamic-form-section {
    display: none;
}

/* login form design CSS */


@media (max-width: 576px) {
    .sub-options {
        position: static;
        border: none;
        box-shadow: none;
    }
}


.check-icon {
    float: right;
    color: green;
    display: none;
}

.option.selected .check-icon,
.sub-options div.selected .check-icon {
    display: inline-block;
}