/*=========== TABLE OF CONTENTS ===========
1. Common CSS
2. Page CSS
==========================================*/

/*-------------------------------------
  1. Common CSS
--------------------------------------*/
.panel__signin-homewifi-image {
    height: 32px;
}
.welcome__divider {
  height: 12px;
  margin-left: 16px;
  background-color: var(--indigo_500_7f);
  width: 1px;
}

.label_one-link {
  margin-left: 14px;
}

.form__field--full-name {
  color: var(--gray_500) !important;
  padding-left: 12px;
  padding-right: 12px;
  background-color: var(--white) !important;
  width: 76%;
  height: 40px;
  border-radius: 8px !important;
}

.helper__counter {
  letter-spacing: 0.4px;
}

/*-------------------------------------
  2. Page CSS
--------------------------------------*/
.sign-in-desktop {
    background-color: var(--white);
    width: 100%;
    display: flex;
    align-items: center;
    height: 100vh !important;
    @media only screen and (max-width: 1050px) {
        flex-direction: column;
    }
}

.welcome {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    padding-left: 20px;
    /*padding-right: 20px;*/
  }
}

.welcome__content {
    gap: 360px;
    background-color: var(--indigo_a400);
    display: flex;
    width: 82%;
    flex-direction: column;
    align-items: flex-start;
    padding: 92px 56px 92px 98px;
    height: 100vh !important;
    @media only screen and (max-width: 1050px) {
        width: 100%;
        gap: 270px;
        padding: 20px;
    }

    @media only screen and (max-width: 550px) {
        gap: 180px;
    }
}

.welcome__image {
  height: 94px;
  width: 54%;
  object-fit: contain;
}

.welcome__text-container {
  margin-bottom: 84px;
  margin-left: 16px;
  gap: 16px;
  display: flex;
  width: 90%;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    margin-left: 0px;
  }
}

.welcome__title {
  color: var(--gray_50) !important;
  width: 86%;
  line-height: 40px;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.welcome__description {
  color: var(--gray_50_7f) !important;
  line-height: 16px;
}

.welcome__links {
  display: flex;
  align-items: center;
}

.panel {
  /* margin-bottom: 78px;
  padding-left: 56px;*/
  padding-right: 56px;
  gap: 168px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    align-self: stretch;
    gap: 126px;
    padding-left: 20px;
    padding-right: 20px;form__button--submit
  }

  @media only screen and (max-width: 550px) {
    gap: 84px;
  }
}

.panel__signin {
  gap: 20px;
  display: flex;
  width: 80%;
  max-width: 400px !important;
  flex-direction: column;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    max-width: 380px !important;
  }
}

.signin__top {
  gap: 18px;
}

.signin__title {
    color: var(--cool_gray_500) !important;
    text-align: center;
    @media only screen and (max-width: 1050px) {
        margin-left: 0px;
    }
}

.signin__subtitle {
  color: var(--black) !important;
  text-align: center;
  align-self: stretch;
  line-height: 20px;
}

.signin__form {
  gap: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.form__password-container {
  gap: 4px;
  display: flex;
  align-self: stretch;
  flex-direction: column;
}

.password-container__fields {
  gap: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.password-container__progress-bar {
  background-color: var(--gray_300);
  width: 76%;
  display: flex;
  border-radius: var(--radius-xs);
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.progress-bar__line {
  height: 4px;
  background-color: var(--indigo_a400);
  width: 50%;
  border-radius: var(--radius-xs);
}

.form__helper {
  display: flex;
}

.helper__info {
    gap: 6px;
    display: flex;
    margin-top: 8px;
}

.info__icon {
  height: 16px;
}

.form__checkbox {
  color: var(--gray_500);
  letter-spacing: 0.4px;
  font-size: 12px;
  gap: 12px;
  display: flex;
}

.form__button--submit {
    color: #ffffff !important;
    padding-left: 34px;
    padding-right: 34px;
    background-color: #5e49e7 !important;
    height: 36px;
    border-radius: 4px !important;
}

.panel__footer {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

    @media only screen and (max-width: 1050px) {
        width: 100%;
    }
}

.footer__text {
  color: var(--cool_gray_500) !important;
}

.footer__link-container {
  padding-left: 8px;
  padding-right: 8px;
  flex: 1;
  display: flex;
}

.link-container__link {
  font-weight: 400 !important;
  text-decoration: underline;
}
