.loader-container {
    width: 100%;
    height: 100vh;
    background-color: white;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid;
    color: #30406A;
    border-radius: 50%;
    border-top-color: transparent;
    animation: loader 1.2s linear infinite;
}

@keyframes loader {
    25% {
        color: #30406A;
    }
    50% {
        color: #30406A;
    }
    75% {
        color: #30406A;
    }
    to {
        transform: rotate(360deg);
    }
}