.form-container-loading {
    position: relative;
}
.form-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.75);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: inherit;
    cursor: wait;
}
.form-loading-overlay .spinner-border {
    width: 3rem;
    height: 3rem;
}

.loading-container {
    position: relative !important;
}
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 1056;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: inherit;
    cursor: wait;
}
.loading-overlay .spinner-border {
    width: 3rem;
    height: 3rem;
}


