.tabs-container {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 2.25rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.tabs-container .control {
  font-weight: bold;
  opacity: 0.7;
  position: relative;
  filter: grayscale(1);
  color: rgb(252, 116, 74);
  transition: filter 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tabs-container .control::before {
  position: absolute;
  content: "";
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: rgb(252, 116, 74);
  transition: 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tabs-container .control.active {
  opacity: 1;
  filter: grayscale(0);
}
.tabs-container .control.active::before {
  width: 100%;
}
.tabs-container .control:hover {
  opacity: 1;
  filter: grayscale(0);
}
.tabs-container .control:hover::before {
  width: 100%;
}/*# sourceMappingURL=auth.css.map */