form {
    position: relative;
}

.block-loading {
    align-items: center;
    background: rgba(246, 248, 251, .74);
    backdrop-filter: blur(3px);
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
}

.block-loading__card {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(38, 49, 63, .11);
    border-radius: 12px;
    color: #26313f;
    display: flex;
    gap: 12px;
    min-width: 220px;
    padding: 14px 18px;
}

.block-loading__spinner {
    animation: gk-spin .85s linear infinite;
    border: 3px solid rgba(31, 122, 154, .14);
    border-radius: 50%;
    border-top-color: #1f7a9a;
    height: 28px;
    width: 28px;
}

.block-loading__text {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
}

.block-loading__text small {
    color: #6f7b89;
    font-size: 11px;
    font-weight: 600;
}

@keyframes gk-spin {
    to {
        transform: rotate(360deg);
    }
}
