﻿#loaderForm {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.81);
    
    z-index: 1000;
}
.pulsing-circle {
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering (if needed) */
    width: 100%; /* Ensure wrapper takes full width */
    height: 100vh;
    animation: spin 1s infinite;
}
    .pulsing-circle img {
        background-color: #84b1a9;
        border-radius: 40px;
        padding: 20px;
        width: 120px;
    }

@keyframes spin {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}



/*@keyframes pulsing-circle {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}*/
