.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 10px;
    background-color: hsla(0, 0%, 0%, 0.5);
    position: fixed;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 99999999;
    backdrop-filter: blur(2px);
    height: 100vh;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    animation: zoom 0.9s infinite ease-in-out;
}

.dot:nth-child(1) {
    animation-delay: 0s;
    background-color: #5fbdc2;
}

.dot:nth-child(2) {
    animation-delay: 0.15s;
    background-color: #4bb5bb;
}

.dot:nth-child(3) {
    animation-delay: 0.3s;
    background-color: #37adb3;
}

.dot:nth-child(4) {
    animation-delay: 0.45s;
    background-color: #329ca1;
}

.dot:nth-child(5) {
    animation-delay: 0.6s;
    background-color: #2c8a8f;
}

@keyframes zoom {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

.kt-input.is-invalid,
.kt-select.is-invalid {
    border-color: red;
}

.kt-input.is-valid,
.kt-select.is-valid {
    border-color: #50cd89 !important;
}

.kt-form-error {
    color: red;
}