.register-page {
  display: grid;
  grid-template-columns: 1fr minmax(auto, 626px) 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "header header header" "banner-left form banner-right";
  align-items: stretch;
  justify-items: center;
  padding: 0.125rem;
  row-gap: 1.5rem;
  column-gap: 0.7rem;
}
@media (min-width: 522px) {
  .register-page {
    padding-right: 0.4375rem;
    padding-left: 0.4375rem;
  }
}
@media (min-width: 768px) {
  .register-page {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
@media (min-width: 768px) {
  .register-page {
    column-gap: 1.5rem;
  }
}
.register-page__header {
  grid-area: header;
  padding-top: 100px;
  text-align: center;
  max-width: 626px;
}
.register-page__header > * {
  margin: 0;
  padding: 0;
}
.register-page__header > * + * {
  margin-top: 0.7rem;
}
.register-page__title {
  font-size: clamp(1.5rem, 3vw, 1.625rem);
  font-weight: 700;
  line-height: normal;
}
.register-page__subtitle {
  font-size: clamp(1rem, 2.7vw, 1.125rem);
  text-align: center;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.register-page__form {
  grid-area: form;
  width: 100%;
}
.register-page__actions {
  display: grid;
  row-gap: 1rem;
  column-gap: 1rem;
  grid-template-areas: "checkbox" "register" "existing";
  width: 100%;
}
@media (min-width: 768px) {
  .register-page__actions {
    grid-template-areas: "checkbox checkbox" "register existing";
  }
}
.register-page__actions.button {
  color: #1e1ec8;
  border: solid 1px currentColor;
  background-color: transparent;
}
.register-page__actions > .button-primary {
  grid-area: register;
}
.register-page__actions > .button-text {
  grid-area: existing;
}
.register-page__actions > .button[disabled] {
  color: gray !important;
  cursor: auto;
  background-color: white;
}
.register-page__checkbox {
  grid-area: checkbox;
  display: flex;
  align-items: flex-start;
  font-size: clamp(0.9rem, 2vw, 1rem);
}
.register-page__checkbox .custom-checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  gap: 0.7rem;
}
.register-page__checkbox .custom-checkbox-label .checkbox-icon {
  margin-top: 16px;
  width: 24px;
  height: 24px;
  background-image: url("/img/new/icons/checkbox.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s ease, opacity 0.2s ease;
  flex-shrink: 0;
  transform: scale(0.9);
  opacity: 0.6;
}
.register-page__checkbox .custom-checkbox-label p {
  color: #000000;
  text-align: left;
  line-height: 1.5;
}
.register-page__checkbox .custom-checkbox-label input[type="checkbox"] {
  display: none;
}
.register-page__checkbox .custom-checkbox-label input[type="checkbox"]:checked + .checkbox-icon {
  background-image: url("/img/new/icons/checkbox-checked.svg");
  transform: scale(1);
  opacity: 1;
}
.register-page__banner {
  display: flex;
  align-items: flex-start;
  padding: 0.125rem;
}
.register-page__banner--left {
  grid-area: banner-left;
  justify-self: end;
  display: flex;
  justify-content: flex-end;
}
.register-page__banner--right {
  grid-area: banner-right;
  justify-self: start;
  display: flex;
  justify-content: flex-start;
}
.register-page__banner-image {
  visibility: hidden;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
@media (min-width: 992px) {
  .register-page__banner-image {
    visibility: unset;
  }
}
.login-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.625rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(90deg, rgba(216, 217, 242, 0.28) 0%, rgba(249, 248, 255, 0.28) 100%);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8.8932294846px);
}
@media (min-width: 768px) {
  .login-card {
    padding: 35px 45px;
  }
}
.login-card__label {
  padding-left: 1rem;
  color: #000000;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 400;
}
.login-card__input {
  padding: 1rem 1.5rem;
  border: 1px solid #000000;
  border-radius: 0.7rem;
  font-size: clamp(0.9rem, 2vw, 1rem);
  background-color: transparent;
}
.login-card__input:focus {
  border: 1px solid #1299f6;
  box-shadow: 0 0 5px #1299f6;
}
.login-card__input:focus-visible {
  outline: none;
}
.login-card__input.input-error {
  border-color: #ff005a;
}
.login-card__input.input-error:focus {
  border-color: #ff005a;
  box-shadow: 0 0 5px #ff005a;
}
div.telly-download-app {
  display: block;
  max-width: 626px;
  width: 100%;
  margin: 20px auto 100px;
  text-align: center;
}
.login-card__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.login-card__input-wrapper .login-card__input {
  width: 100%;
  padding-right: 40px;
}
.login-card__input-wrapper .login-card__toggle-button {
  position: absolute;
  right: 0.7rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e1ec8;
}
.download-app > * {
  margin: 0;
  padding: 0;
}
.download-app > * + * {
  margin-top: 1rem;
}
.download-app__title {
  font-size: clamp(0.9rem, 2vw, 1rem);
  text-align: center;
  margin-bottom: 0.7rem;
}
.download-app__button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.download-app__button {
  display: grid;
  grid-template-columns: 1fr 4fr;
  align-items: center;
  border: 1px solid #000000;
  border-radius: 3px;
  text-decoration: none;
  background-color: #fff;
  color: inherit;
  margin: 0 0.4375rem;
  padding: 0.125rem 0.4375rem;
}
.download-app__logo {
  grid-column: 1 / 2;
  justify-self: center;
  max-width: 100%;
  height: auto;
}
.download-app__text {
  display: flex;
  font-size: clamp(0.6875rem, 1vw, 0.8em);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  grid-column: 2 / 3;
}
.download-app__vector-text {
  margin-top: 4px;
  margin-left: 8px;
  max-width: 100%;
  height: auto;
}
.download-app__description {
  text-align: center;
  font-size: clamp(0.85rem, 1.2vw, 0.9rem);
  margin-top: 1.5rem;
  padding: 0 1.5rem;
}
.download-app__action-text {
  padding-left: 10px;
}
/* @group Ruian */
.ui-menu {
  /*  background: linear-gradient(
                  90deg,
                  rgba(216, 217, 242, 0.28) 0%,
                  rgba(249, 248, 255, 0.28) 100%
  );*/
  background: #f9f8ff;
  width: 500px;
  border: 1px solid #252d3a;
  border-radius: 0.7rem;
  font-size: 18px;
  line-height: 22px;
  list-style: none;
  padding: 10px 0;
  z-index: 100;
  padding-left: 1rem;
  padding-right: 1rem;
}
.ui-menu-item {
  line-height: 26px;
  box-sizing: border-box;
  margin-bottom: 0.2rem;
}
.ui-menu-item:hover {
  cursor: pointer;
  color: #000;
  background: #fff;
}
li.ui-menu-item.selected {
  background: yellow;
}
.ruian__wrap__grey, .validation__wrap__grey {
  padding: 30px 30px 30px;
  background: #19191A;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  margin-bottom: 20% !important;
  border: 1px solid #3B3B3B;
}
.ruian__wrap__grey .desc {
  text-align: left;
  margin: 15px 22% 45px 0;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  font-weight: 300;
}
.validation__wrap__grey a {
  color: #fff;
  text-decoration: underline;
}
.ruian_back {
  border: 1px solid #fff;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  line-height: 22px;
  background: #161e22;
  color: #fff;
  display: inline-block;
  margin: 0;
  padding: 9.5px 11.5px;
  cursor: pointer;
  font-weight: 600;
}
.ruian_back:hover {
  background: #fff;
  color: #000;
}
.ruian_continue {
  float: right;
  padding: 13px 40px 12px !important;
}
#btn_tv_browser {
  width: 265px;
}
@media only screen and (max-width: 528px) {
  #btn_tv_browser, #btn_tv_pairing {
    max-width: 300px !important;
    width: 100% !important;
  }
  #btn_tv_pairing_modal {
    max-width: 300px !important;
    width: 100% !important;
  }
  .mobile_nodisplay {
    display: none;
  }
  .ruian_back {
    margin: 0 auto;
    display: block;
    width: 40%;
    text-align: center;
  }
  .ruian_continue {
    float: none !important;
    margin: 10% auto 10% !important;
    display: block !important;
    text-align: center;
  }
  .ruian__wrap__grey, .validation__wrap__grey {
    margin-bottom: 45% !important;
  }
}
/* End of Ruian*/
@media (max-width: 522px) {
  .login-page__banner--left {
    display: none;
  }
  .login-page__banner--right {
    display: none;
  }
}
div.input-error-text-wrapper {
  margin-top: -10px;
  padding-left: 1rem;
  display: none;
}
div:has(> input.input-error) + div.input-error-text-wrapper {
  display: unset;
}
input.input-error + div.input-error-text-wrapper {
  display: unset;
}
span.input-error-text {
  color: #ff005a;
  font-size: smaller;
}
