@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.gestio-loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    animation: fade-in 1200ms cubic-bezier(0.165, 0.84, 0.44, 1) 200ms both;
    position: relative;
}

.gestio-loader-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    border-radius: 50%;
    background-color: #0045d6;
    position: absolute;
}

.gestio-spinner-border {
    width: 108px;
    height: 108px;
    border: 4px solid #fff0f1;
    border-top: 4px solid #0045d6;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    position: absolute;
}

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