.wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.spinner {
  display: inline-block;
  border-radius: 50%;
  border: 2.5px solid var(--gris-clair);
  border-top-color: var(--vert-fonce);
  animation: rotation 0.7s linear infinite;
}

.label {
  font-size: 13px;
  color: var(--gris-moyen);
}

.pageWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}

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