body {
    margin: 0;
}

.loader-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    background: #f7f7f5;
}

.loader {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(17, 17, 17, 0.12);
    border-top-color: #111111;
    animation: loaderSpin 0.7s linear infinite;
}

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