.auth-spinner-body {
    overflow: hidden;
    position: absolute;
    align-items: center;
    justify-content: center;
    display: flex;
    width: 100%;
    height: 100%;
}

.spinner-container {
    margin: auto;
    padding-bottom: 100px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.spinner {
    animation: spinner 0.5s linear infinite;
    border: 4px solid #F6F7FA;
    border-top: 4px solid #000000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

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