.circle {
        border-radius: 50%;
        font-size: 0.8rem;
        justify-content: center;
        padding: 1em;
        + form {
            display: inline-flex;
        }
}
.social {
        border-color: transparent;
        border-radius: 0.5em;
        display: inline-flex;
        padding: 0.75em;
        width: max-content;
}

.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: load 1.5s infinite;
}

@keyframes load {
  to { left: 100%; }
}
