body.loader-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #f3effa;
}

.loader {
    width: 60px;
    height: 60px;
    border: 6px solid #e0d6f5;
    border-top: 6px solid #7a4fcf;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}