.wave-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Send the wave behind the content */
}

.containerRelative {
    position: relative;
    z-index: 1; /* Make sure the content is above the wave */
}

.relativeZIndex2 {
    position: relative;
    z-index: 2;
}


/*this is input 2fa or rsa style*/
.pin-rsa-input {
    display: flex;
    justify-content: space-between;
    gap: 10px; /* Adjust spacing as needed */
}

.pin-rsa-input .form-control {
    width: 40px; /* Adjust width to fit the design */
    text-align: center;
    font-size: 24px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 8px; /* Gives a modern look */
}

.pin-rsa-input .form-control:focus {
    border-color: #007bff; /* Adjust to your primary color */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

/* Optional: Different styling for PIN and RSA fields */
.pin-field {
    background-color: #f0f0f0; /* Example color for PIN fields */
}

.rsa-field {
    background-color: #ffffff; /* Example color for RSA fields */
}

.pin-rsa-input-left {
    justify-content: left;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

/* Hide submenu by default */
.first-level {
    display: none; /* Initially hide the submenu */
    opacity: 1;
    transition: opacity 0.3s ease, max-height 0.3s ease; /* Transition for smooth opening and closing */
    max-height: 0; /* Prevent overflow */
}

/* Show submenu when active */
.first-level.show {
    display: block; /* Show the submenu */
    opacity: 1; /* Fade in */
    max-height: 100px; /* Set a max-height that fits your submenu content */
}


.activeLink {
    background-color: rgba(93, 135, 255, 0.1);
    color: #5D87FF;
}

.form-control {
    border-radius: 5px !important;
}

.alert {
    position: relative;
    padding-right: 40px; /* space for the close button */
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.text-right {
    text-align: right !important;
}

.btn-xs {
    padding: 2px 8px !important;
}

.ui-state-default.ui-state-highlight.ui-state-active {
    height: 30px !important;
    text-align: center !important;
    margin: 0 !important;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    height: 30px !important;
    text-align: center !important;
    margin: 0 !important;
}

.ms-options-wrap > button:focus, .ms-options-wrap > button {
    border: 1px solid #dfe5ef !important;
    border-radius: 5px !important;
}

.ms-options-wrap > .ms-options {
    margin-top: 2px !important;
    border: 1px solid #dfe5ef !important;
    border-radius: 5px !important;
}

.ms-options-wrap > .ms-options > .ms-search input {
    border-bottom: 1px solid #dfe5ef !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #dfe5ef !important;
    border-radius: 5px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #dfe5ef !important;
}

.select2-dropdown {
    border: 1px solid #dfe5ef !important;
    border-radius: 5px !important;
}
