/* Loading form */

form.loading {
    width: 100%;
    /* display: flex; */
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 10%;
    width: 80%;
    height: 100%;
    position: relative;
}

.spinner {
    width: 70px;
    height: 70px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #1869B7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}