/* Utilities */
.btn-pill {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 6.25rem;
  background-color: var(--_btn-clr);
  color: var(--_btn-txt-clr);
  padding: 1.25em 2.25rem;
  border: none;
  border-radius: 100vw;
  font-size: var(--_btn-fs, var(--fs-400));
  font-weight: var(--_btn-fw, var(--fw-700));
  text-align: center;
  text-wrap: nowrap;
  text-transform: uppercase;
  transition: all 180ms ease;

  a {
    all: unset;
  }

  &:hover {
    color: var(--_btn-clr);
    background-color: var(--_btn-txt-clr);
    outline: 1px solid var(--_btn-clr);

    transition: all 180ms ease;

    .btn-icon {
      svg {
        path {
          fill: currentColor;
        }
      }
    }
  }

  &:has(.btn-icon),
  &:has(.bx) {
    --_btn-clr: var(--_btn-icon-clr);
    --_btn-txt-clr: var(--_btn-icon-txt-clr);

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.625rem;

    .btn-icon {
      flex-shrink: 0;
      width: var(--_btn-icon-size, 1.25rem);
      height: var(--_btn-icon-size, 1.25rem);
      aspect-ratio: 1;

      svg {
        width: 100%;
        height: 100%;
      }
    }
  }

  &.btn-primary {
    --_btn-clr: var(--primary-clr);
    --_btn-txt-clr: var(--white-clr);
  }

  &.btn-secondary {
    --_btn-clr: var(--secondary-clr);
    --_btn-txt-clr: var(--white-clr);
  }

  &.btn-secondary-900 {
    --_btn-clr: var(--secondary-clr-900);
    --_btn-txt-clr: var(--white-clr);
  }

  &.btn-tertiary {
    --_btn-clr: var(--tertiary-clr);
    --_btn-txt-clr: var(--white-clr);
  }

  &.btn-tertiary-900 {
    --_btn-clr: var(--tertiary-clr-900);
    --_btn-txt-clr: var(--white-clr);
  }

  &.btn-outline,
  &.btn-outline-tertiary {
    --_btn-clr: var(--white-clr);
    --_btn-txt-clr: var(--tertiary-clr);
    border: 1px solid var(--_btn-txt-clr);
  }

  &.btn-outline-tertiary-900 {
    --_btn-clr: var(--white-clr);
    --_btn-txt-clr: var(--tertiary-clr-900);
    border: 1px solid var(--_btn-txt-clr);
  }

  &.btn-outline-secondary-900 {
    --_btn-txt-clr: var(--secondary-clr-900);
    --_btn-clr: var(--white-clr);
    border: 1px solid var(--_btn-txt-clr);
  }

  &.btn-outline-primary {
    --_btn-clr: var(--white-clr);
    --_btn-txt-clr: var(--primary-clr);
    border: 1px solid var(--_btn-txt-clr);
  }

  &.btn-outline-secondary {
    --_btn-clr: var(--white-clr);
    --_btn-txt-clr: var(--secondary-clr);
    border: 1px solid var(--_btn-txt-clr);
  }

  &.btn-outline-secondary-900 {
    --_btn-clr: var(--white-clr);
    --_btn-txt-clr: var(--secondary-clr-900);
    border: 1px solid var(--_btn-txt-clr);
  }

  &.btn-outline-text-700 {
    --_btn-clr: var(--white-clr);
    --_btn-txt-clr: var(--text-clr-700);
    border: 1px solid var(--white-clr-700);
  }

  &.btn-fw-500 {
    --_btn-fw: var(--fw-500);
  }

  &.btn-sm {
    padding-block: 1rem;

    @media (width <=768px) {
      --_btn-fs: 0.875rem;
    }
  }

  &.btn-md {
    padding-inline: 1.625rem;
  }

  &.btn-xl {
    padding: 1rem 2.5rem;
  }

  &.btn-2xl {
    width: 13.5rem;
  }

  &.btn-3xl {
    padding: 0.875rem;
    width: 20.5rem;
  }

  &.btn-full {
    width: 100%;
  }

  &.btn-partner {
    border: none;
    border-bottom: 2px solid var(--secondary-clr);

    &:hover {
      outline: none;
      border-bottom-color: var(--white-clr);
    }
  }
}

.h1 {
  font-weight: var(--fw-900);
  font-size: var(--fs-1000);
  line-height: 1.14;
}

h2 {
  margin-bottom: 0;
  color: var(--tertiary-clr-900);
}

/* End of Utilities */

/* Slider */
.range-slider-wrapper {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background-color: var(--white-clr-850);
  border-radius: 100vw;
}

/* End of Slider */
/* Css Only Carousel */

/* End of Css Only Carousel */

body {
  font-family: var(--ff-satoshi);
  background-color: var(--white-clr-900);
  line-height: 1.6;
}

.wrapper {
  --_max-width: 1600px;

  @media (width <=768px) {
    --_gap: 0px !important;
  }
}

/* Register */
.register {
  padding-block: clamp(2rem, 5vw, 3rem);
  position: relative;
}

.register-content {
  display: grid;
  gap: 1.5rem;

  .column:first-of-type {
    padding: 3rem 4.5rem;
    display: grid;
    gap: 0.75rem;
    border-radius: 3rem;
    background-color: var(--white-clr);

    > * {
      max-width: 500px;
      margin-inline: auto;
    }

    h1 {
      max-width: 15ch;
      margin-inline: auto;
      font-weight: var(--fw-900);
      font-size: var(--fs-950);
      line-height: 1;
      color: var(--text-clr-700);
      text-transform: uppercase;
    }

    p {
      color: var(--black-clr);
    }

    .btn-pill {
      padding-top: 0.625rem 3rem;
      height: 56px;
    }

    @media (width <=600px) {
      padding-inline: 1.125rem;

      .register-form {
        width: min(500px, 100%);
      }
    }
  }

  @media (width<=600px) {
    .column:last-of-type {
      display: none;
    }
  }

  @media (600px<width <=1024px) {
    grid-template-rows: 320px 1fr;

    .column:last-of-type {
      grid-row: 1;
    }
  }

  @media (width > 1024px) {
    grid-template-columns: minmax(500px, 1fr) 1fr;
  }
}

.register-header {
  > * {
    text-align: center;
  }

  p {
    padding-block: 1.5rem 2.25rem;
    font-weight: var(--fw-500);
    font-size: var(--fs-400);
  }
}

.user-type {
  width: 1.5rem;
  height: 1.5rem;
}

.register-card {
  width: 100%;
  padding: 1.125rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.125rem 1.25rem;
  align-items: center;
  border-radius: 1.5rem;
  border: 1px solid var(--white-clr-800);
  background-color: #fcfcff;

  h2 {
    font-size: 1.5rem;
    font-weight: var(--fw-700);
    line-height: 28.8px;
    color: var(--tertiary-clr);
    margin-bottom: 0;
  }

  &:hover {
    border-color: var(--secondary-clr-900);
    /* box-shadow: -3px 0 0 var(--secondary-clr); */
  }

  .register-card-description {
    grid-column: 1/-1;
  }
}

.register-card-img {
  width: 3.125rem;
  height: 3.125rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 0.625rem;
  border: 1px solid var(--white-clr-800);
  background-color: var(--white-clr);

  svg {
    margin: auto;
    width: 1.5rem;
    height: 1.5rem;
    aspect-ratio: 1;
  }
}

.register-card-title {
  color: #0f0f0f;
  font-family: var(--ff-roboto);
  font-weight: var(--fw-700);
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.register-card-description {
  max-width: 25ch;
  max-width: 35ch;
  font-family: Roboto;
  font-weight: var(--fw-400);
  font-size: var(--fs-400);
  line-height: 1.2;
  letter-spacing: 2%;

  color: #6b6b79;
}

.register-footer {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.25rem;

  font-weight: var(--fw-500);
  font-size: var(--fs-400);
  line-height: 1;

  a {
    font-weight: var(--fw-700);
    color: var(--secondary-clr-900);
    transition: text-decoration 180ms ease;

    &:hover {
      text-decoration: underline;
    }
  }
}

.signin-img {
  height: 100%;
  border: 1px solid #ffffff;
  border-radius: 2.25rem;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
  }
}

/* End of Register */
