﻿form {
    position: relative;
}

body.loading *:not(.spinner-overlay) { 
    pointer-events: none;
}

.spinner-overlay {
    position: absolute; /* This positions the overlay relative to the form */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(250, 250, 250, 0.80);
    z-index: 3;
}



body.loading *:not(.spinner-overlay) {
    pointer-events: none;
}
