@use "../../../../styles/abstracts/variables";

.signup__form {
  color: variables.$col-secondary;
  background: transparent;
  font-family:
    variables.$font-onest,
    sans-serif !important;

  &__steps {
    display: flex;
    align-items: center;

    width: 100%;

    padding-bottom: 2rem;

    &--step {
      background: variables.$col-white;

      border: 1px solid
        variables.$col-border-lining;

      height: 35px;
      width: 35px;

      min-width: 35px;

      display: flex;
      align-items: center;
      justify-content: center;

      border-radius: 50px;

      font-family: variables.$font;

      font-weight: 500;

      font-size: 0.85rem;

      color: #333332;

      z-index: 2;

      flex-shrink: 0;

      @media only screen and (max-width: 1000px) {
        height: 35px;
        width: 35px;

        min-width: 35px;

        font-size: 0.75rem;
      }
    }

    &--active {
      @extend .signup__form__steps--step;

      background: variables.$col-orange;

      color: variables.$col-dark;

      border-color: variables.$col-orange;
    }

    &__line {
      flex: 1;

      height: 2px;

      margin: 0 0.75rem;

      background: rgba(
        255,
        255,
        255,
        0.08
      );

      border-radius: 999px;

      transition: all 0.25s ease;

      &--active {
        flex: 1;

        height: 2px;

        margin: 0 0.75rem;

        background: #ffca7d;

        border-radius: 999px;
      }
    }
  }
}

@media only screen and (max-width: 1000px) {
  .signup__form {
    &__steps {
      &__line,
      &__line--active {
        margin: 0 0.5rem;
      }
    }
  }
}