/* Main web login redesign. All selectors are scoped so the other authentication
   screens that share layouts.login retain their existing presentation. */
body.login-redesign {
  --login-sidebar: clamp(230px, 20.5vw, 380px);
  --login-sidebar-gutter: clamp(24px, 2.5vw, 48px);
  --login-sidebar-content: calc(var(--login-sidebar) - (2 * var(--login-sidebar-gutter)));
  --login-rail: clamp(44px, 3.2vw, 64px);
  --login-navy: #080052;
  --login-blue: #0032a0;
  --login-green: #15cf8c;
  --login-cream: #f7f3e5;
  min-height: 100vh;
  overflow: hidden;
  color: var(--login-navy);
  background: var(--login-navy);
}

html::-webkit-scrollbar,
body.login-redesign::-webkit-scrollbar,
body.login-redesign section .login-form::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track,
body.login-redesign::-webkit-scrollbar-track,
body.login-redesign section .login-form::-webkit-scrollbar-track {
  background: rgba(0, 0, 76, .8);
}

html::-webkit-scrollbar-thumb,
body.login-redesign::-webkit-scrollbar-thumb,
body.login-redesign section .login-form::-webkit-scrollbar-thumb {
  background: #bd66f3;
}

html::-webkit-scrollbar-thumb:hover,
body.login-redesign::-webkit-scrollbar-thumb:hover,
body.login-redesign section .login-form::-webkit-scrollbar-thumb:hover {
  background: #bd66f3;
}

body.login-redesign #preloader {
  display: none !important;
}

body.login-redesign::before,
body.login-redesign::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

body.login-redesign::before {
  left: 0;
  width: var(--login-sidebar);
  background: #fff;
}

body.login-redesign::after {
  right: 0;
  width: var(--login-rail);
  background: #1b2d89;
}

body.login-redesign header {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: block;
  width: auto;
  height: auto;
  background: transparent;
  pointer-events: none;
}

body.login-redesign header .header-top,
body.login-redesign header .header-top .sticky-inner {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.login-redesign header .elpedison-logo {
  position: fixed;
  top: 8.6vh;
  left: var(--login-sidebar-gutter);
  width: var(--login-sidebar-content);
  max-width: none;
  height: auto;
  padding: 0;
  pointer-events: auto;
}

body.login-redesign header .elpedison-logo img {
  display: block;
  width: 100%;
  height: auto;
}

body.login-redesign header .trigger-menu,
body.login-redesign header .notifications {
  display: none;
}

body.login-redesign header .languages {
  position: fixed;
  top: 7.2vh;
  right: 0;
  bottom: auto;
  left: auto;
  display: block;
  width: var(--login-rail);
  height: auto;
  padding: 0;
  background: transparent;
  transform: none;
  pointer-events: auto;
}

body.login-redesign header .languages .inner {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  background: transparent;
  white-space: normal;
  transform: none;
}

body.login-redesign header .languages .inner ul {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 1.4vh;
  width: 100%;
  margin: 0;
  padding: 0;
}

body.login-redesign header .languages .inner ul li {
  display: block;
  margin: 0;
  padding: 0;
}

body.login-redesign header .languages .inner ul li:first-child {
  display: none;
}

body.login-redesign header .languages a {
  display: block;
  padding: 0;
  color: #fff;
  font-size: clamp(10px, 1vw, 18px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

body.login-redesign header .languages a.selected {
  color: var(--login-green);
}

body.login-redesign #main {
  position: fixed;
  inset: 0 var(--login-rail) 0 var(--login-sidebar);
  z-index: 2;
  width: auto;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--login-navy);
}

body.login-redesign #main > .inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body.login-redesign section.login {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  background: var(--login-navy);
}

body.login-redesign section.login .cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--login-navy) url("../images/covers/ka-bg-6.jpg") left center / cover no-repeat;
  pointer-events: none;
}

body.login-redesign section.login .cover::before,
body.login-redesign section.login .cover::after {
  display: none;
}

body.login-redesign .login-page-title {
  position: absolute;
  top: 8.2vh;
  left: 50%;
  z-index: 3;
  width: clamp(260px, 25%, 430px);
  margin: 0;
  color: var(--login-navy);
  font-size: clamp(21px, 1.75vw, 30px);
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
  white-space: normal;
  transform: translateX(-50%);
}

body.login-redesign section .login-form {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 19.5vh 0 4vh;
  overflow: auto;
}

body.login-redesign section .login-form .tabs {
  position: relative;
  display: block;
  width: 41.5vw;
  max-width: 800px;
  min-width: 410px;
  height: auto;
  overflow: hidden;
  border-radius: clamp(28px, 3vw, 58px);
  background: var(--login-cream);
  box-shadow: none;
}

body.login-redesign section .login-form .tabs nav {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  min-height: 10.4vh;
  border: 0;
  background: #d4d2c7;
}

body.login-redesign section .login-form .tabs nav a {
  display: flex;
  flex: 1 1 50%;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 1.5vh 1.5vw;
  overflow: visible;
  background: #d4d2c7;
  color: #41413e;
  font-size: clamp(12px, 1.25vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

body.login-redesign section .login-form .tabs nav a::before {
  display: none;
}

body.login-redesign section .login-form .tabs nav a.selected {
  background: var(--login-cream);
  color: var(--login-navy);
}

body.login-redesign section .login-form .tabs nav a:first-child {
  border-radius: clamp(28px, 3vw, 58px) 0 0 0;
}

body.login-redesign section .login-form .tabs nav a:last-child {
  border-radius: 0 clamp(28px, 3vw, 58px) 0 0;
}

body.login-redesign section .login-form .tabs .contents {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  background: var(--login-cream);
}

body.login-redesign section .login-form .tabs .contents .content {
  position: absolute;
  display: none;
  width: 100%;
  height: auto;
  padding: 4.9vh 4.8vw 6.2vh;
  opacity: 0;
}

body.login-redesign section .login-form .tabs .contents .content.selected {
  position: relative;
  display: block;
  opacity: 1;
}

body.login-redesign .login-form form .form-title {
  margin: 0 0 3.2vh;
}

body.login-redesign .login-form form .form-title p {
  margin: 0;
  color: var(--login-navy);
  font-size: clamp(11px, 1.05vw, 20px);
  line-height: 1.42;
}

body.login-redesign .login-form .login-field {
  width: 100%;
  margin: 0 0 2.7vh;
}

body.login-redesign .login-form .login-field input {
  display: block;
  width: 100%;
  height: 7vh;
  min-height: 40px;
  margin: 0;
  padding: 0 1.6vw;
  border: 1px solid #c2d2f0;
  border-radius: clamp(10px, 1.25vw, 24px);
  outline: 0;
  background: #fff;
  color: var(--login-navy);
  font-size: clamp(14px, 1.18vw, 22px);
  font-weight: 700;
  box-shadow: none;
}

body.login-redesign .login-form .login-field input:focus {
  border-color: var(--login-blue);
  box-shadow: 0 0 0 3px rgba(0, 50, 160, .1);
}

body.login-redesign .login-form .login-field input::placeholder {
  color: var(--login-navy);
  opacity: 1;
}

body.login-redesign .login-form .password-container {
  position: relative;
  width: 100%;
}

body.login-redesign .login-form .password-container #eye {
  right: 1.4vw;
  color: var(--login-navy);
  font-size: clamp(13px, 1.15vw, 22px);
}

body.login-redesign .login-form .recovery-link {
  display: block;
  width: fit-content;
  margin: 1.1vh 0 0 auto;
  color: var(--login-navy);
  font-size: clamp(10px, 1vw, 19px);
  line-height: 1.15;
  text-decoration: underline;
}

body.login-redesign .login-form .login-captcha {
  margin-bottom: 2vh;
  overflow: visible;
}

body.login-redesign .login-form .login-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2vw;
  width: 100%;
}

body.login-redesign .login-form .login-actions .checkbox-item {
  display: flex;
  align-items: center;
  margin: 0;
}

body.login-redesign .login-form .login-actions .checkbox-item input {
  width: clamp(24px, 2.5vw, 48px);
  height: clamp(24px, 2.5vw, 48px);
  margin: 0 1vw 0 0;
}

body.login-redesign .login-form .login-actions .checkbox-item label {
  color: var(--login-navy);
  font-size: clamp(11px, 1.1vw, 21px);
  line-height: 1.2;
  white-space: nowrap;
}

body.login-redesign .login-form .login-actions .submit {
  width: 14vw;
  max-width: 270px;
  min-width: 138px;
  height: 6.2vh;
  min-height: 36px;
  margin: 0;
  padding: 0 2vw;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #ad45ef, #c45ee8);
  color: var(--login-navy);
  font-size: clamp(11px, 1.1vw, 21px);
  font-weight: 400;
  line-height: 1;
  text-transform: none;
}

body.login-redesign .login-form .login-actions .submit:hover,
body.login-redesign .login-form .login-actions .submit:focus {
  background: linear-gradient(90deg, #9e34e8, #b94fdf);
}

body.login-redesign #tax_check_form .form-title {
  margin: 0 0 3.2vh;
}

body.login-redesign #tax_check_form .form-title h2 {
  margin: 0;
  color: var(--login-navy);
  font-size: clamp(18px, 1.55vw, 30px);
  font-weight: 700;
  line-height: 1.25;
}

body.login-redesign #tax_check_form > .form-item {
  width: 100%;
  margin: 0 0 2.7vh !important;
}

body.login-redesign #tax_check_form #tax_number {
  display: block;
  width: 100%;
  height: 7vh;
  min-height: 40px;
  margin: 0;
  padding: 0 1.6vw;
  border: 1px solid #c2d2f0;
  border-radius: clamp(10px, 1.25vw, 24px);
  outline: 0;
  background: #fff;
  color: var(--login-navy);
  font-size: clamp(11px, 1.1vw, 21px);
  font-weight: 700;
  box-shadow: none;
}

body.login-redesign #tax_check_form #tax_number::placeholder {
  color: var(--login-navy);
  opacity: 1;
}

body.login-redesign #tax_check_form #tax_number:focus {
  padding: 0 1.6vw;
  border-color: var(--login-blue);
  background: #fff;
  color: var(--login-navy);
  box-shadow: 0 0 0 3px rgba(0, 50, 160, .1);
}

body.login-redesign #tax_check_form .flex-form {
  margin: 0 0 2.5vh !important;
}

body.login-redesign #tax_check_form .checkbox-item {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 !important;
}

body.login-redesign #tax_check_form .checkbox-item input {
  flex: 0 0 auto;
  width: clamp(24px, 2.5vw, 48px);
  height: clamp(24px, 2.5vw, 48px);
  margin: 0 1vw 0 0;
}

body.login-redesign #tax_check_form .checkbox-item label {
  margin: 0;
  color: var(--login-navy);
  font-size: clamp(11px, 1.05vw, 20px);
  line-height: 1.3;
}

body.login-redesign #tax_check_form #terms_link {
  color: #ad45ef;
}

body.login-redesign #tax_check_form #terms_link:hover,
body.login-redesign #tax_check_form #terms_link:focus {
  color: #9e34e8;
}

body.login-redesign #tax_check_form #tax_check_button {
  display: block;
  width: 14vw;
  max-width: 270px;
  min-width: 138px;
  height: 6.2vh;
  min-height: 36px;
  margin: 0;
  padding: 0 2vw;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #ad45ef, #c45ee8);
  color: var(--login-navy);
  font-size: clamp(11px, 1.1vw, 21px);
  font-weight: 400;
  line-height: 1;
}

body.login-redesign #tax_check_form #tax_check_button:hover,
body.login-redesign #tax_check_form #tax_check_button:focus {
  background: linear-gradient(90deg, #9e34e8, #b94fdf);
}

body.login-redesign .login-form .login-actions .checkbox-item input,
body.login-redesign #tax_check_form .checkbox-item input {
  position: relative;
  inset: auto;
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  padding: 0;
  border: 1.5px solid #c2d2f0;
  border-radius: 50%;
  outline: 0;
  opacity: 1;
  z-index: auto;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  cursor: pointer;
  box-shadow: none;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

body.login-redesign .login-form .login-actions .checkbox-item input:hover,
body.login-redesign #tax_check_form .checkbox-item input:hover {
  border-color: #9b78e8;
}

body.login-redesign .login-form .login-actions .checkbox-item input:focus-visible,
body.login-redesign #tax_check_form .checkbox-item input:focus-visible {
  border-color: #9b48e8;
  box-shadow: 0 0 0 3px rgba(173, 69, 239, .16);
}

body.login-redesign .login-form .login-actions .checkbox-item input:checked,
body.login-redesign #tax_check_form .checkbox-item input:checked {
  border-color: #ad45ef;
  background-color: #ad45ef;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4 9.25 7.25 12.5 14 5.75' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

body.login-redesign .login-form .login-actions .checkbox-item label,
body.login-redesign #tax_check_form .checkbox-item label {
  margin: 0;
  padding-left: 0;
}

body.login-redesign .login-form .login-actions .checkbox-item label::before,
body.login-redesign .login-form .login-actions .checkbox-item label::after,
body.login-redesign #tax_check_form .checkbox-item label::before,
body.login-redesign #tax_check_form .checkbox-item label::after {
  content: none;
  display: none;
}

body.login-redesign footer {
  position: fixed;
  inset: 0;
  z-index: 110;
  width: auto;
  height: auto;
  background: transparent;
  pointer-events: none;
}

body.login-redesign footer .tips-slider {
  position: fixed;
  top: 24.5vh;
  right: auto;
  bottom: auto;
  left: var(--login-sidebar-gutter);
  display: block;
  width: var(--login-sidebar-content);
  height: auto;
  margin: 0;
  padding: 0;
  overflow: visible;
  background: #fff;
  transform: none;
  pointer-events: auto;
}

body.login-redesign footer .tips-slider .tips-heading,
body.login-redesign footer .mobile-stores .app-stores-heading {
  position: static;
  display: block;
  width: 100%;
  margin: 0 0 3.6vh;
  padding: 0;
  color: var(--login-navy);
  font-size: clamp(11px, 1.15vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  transform: none;
}

body.login-redesign footer .tips-slider .tips-icon {
  display: none;
}

body.login-redesign footer .tips-slider .swiper-container,
body.login-redesign footer .tips-slider .swiper-wrapper {
  width: 100%;
  height: auto;
  margin: 0;
}

body.login-redesign footer .tips-slider .swiper-wrapper {
  margin-bottom: 3.2vh;
}

body.login-redesign footer .tips-slider .swiper-slide {
  height: auto;
  max-height: none;
  overflow: visible;
  background: #fff;
}

body.login-redesign footer .tips-slider .swiper-slide h4,
body.login-redesign footer .tips-slider .swiper-slide h4 p {
  margin: 0;
  color: var(--login-navy);
  font-size: clamp(15px, 1.05vw, 20px);
  font-weight: 400;
  line-height: 1.35;
}

body.login-redesign footer .tips-slider .controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
}

body.login-redesign footer .tips-slider .controls .swiper-prev,
body.login-redesign footer .tips-slider .controls .swiper-next {
  width: clamp(40px, 4.2vw, 80px);
  height: clamp(40px, 4.2vw, 80px);
  margin: 0;
  border: 2px solid var(--login-green);
  border-radius: 50%;
  background: #fff;
}

body.login-redesign footer .tips-slider .controls .swiper-prev:hover,
body.login-redesign footer .tips-slider .controls .swiper-next:hover {
  background: #effdf8;
}

body.login-redesign footer .tips-slider .controls .swiper-prev::before,
body.login-redesign footer .tips-slider .controls .swiper-next::before {
  top: 0;
  bottom: 0;
  width: clamp(7px, .75vw, 14px);
  height: clamp(7px, .75vw, 14px);
  margin: auto;
  border-color: var(--login-navy);
}

body.login-redesign footer .tips-slider .controls .swiper-prev::before {
  left: 43%;
}

body.login-redesign footer .tips-slider .controls .swiper-next::before {
  left: 36%;
}

body.login-redesign footer .mobile-stores {
  position: fixed;
  top: auto;
  right: auto;
  bottom: 3.8vh;
  left: var(--login-sidebar-gutter);
  display: block;
  width: var(--login-sidebar-content);
  height: auto;
  margin: 0;
  padding: 0;
  overflow: visible;
  background: #fff;
  transform: none;
  pointer-events: auto;
}

body.login-redesign footer .mobile-stores .app-stores-heading {
  margin-bottom: 2.4vh;
}

body.login-redesign footer .mobile-stores .supply-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.8vh !important;
  margin: 0;
  padding: 0;
}

body.login-redesign footer .mobile-stores .supply-actions a,
body.login-redesign footer .mobile-stores .supply-actions img {
  display: block;
}

body.login-redesign footer .mobile-stores .supply-actions-img {
  width: 78%;
  max-width: none !important;
  height: auto;
}

body.login-redesign footer > .inner {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
}

body.login-redesign footer .elpedison-logo {
  display: none;
}

body.login-redesign footer ul.social {
  position: fixed;
  top: auto;
  right: 0;
  bottom: 1.7vh;
  left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: var(--login-rail);
  margin: 0;
  padding: 0;
  transform: none;
  pointer-events: auto;
}

body.login-redesign footer ul.social li {
  flex: 0 0 auto;
  width: clamp(26px, 2.6vw, 50px);
  height: clamp(26px, 2.6vw, 50px);
  margin: 0 0 .7vh;
}

body.login-redesign footer ul.social li a,
body.login-redesign footer ul.social li a span {
  width: clamp(26px, 2.6vw, 50px);
  height: clamp(26px, 2.6vw, 50px);
}

body.login-redesign footer ul.social li a span {
  opacity: 1;
  transform: scale(.72);
  transform-origin: center;
}

@media only screen and (max-width: 860px) {
  body.login-redesign {
    min-height: 100vh;
    overflow: auto;
    background: #fff;
  }

  body.login-redesign::before,
  body.login-redesign::after {
    display: none;
  }

  body.login-redesign header {
    position: relative;
    inset: auto;
    width: 100%;
    height: 78px;
    background: #fff;
  }

  body.login-redesign header .elpedison-logo {
    position: absolute;
    top: 23px;
    left: 20px;
    width: 165px;
  }

  body.login-redesign header .languages {
    position: absolute;
    top: 29px;
    right: 18px;
    width: auto;
  }

  body.login-redesign header .languages .inner ul {
    flex-direction: row-reverse;
    gap: 14px;
  }

  body.login-redesign header .languages a {
    color: var(--login-blue);
    font-size: 12px;
  }

  body.login-redesign header .languages a.selected {
    color: var(--login-green);
  }

  body.login-redesign #main {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: calc(100vh - 78px);
    margin: 0;
    padding: 10px;
    overflow: visible;
  }

  body.login-redesign #main > .inner {
    height: auto;
    min-height: calc(100vh - 98px);
    overflow: visible;
  }

  body.login-redesign section.login {
    min-height: calc(100vh - 98px);
    padding: 96px 16px 38px;
    overflow: hidden;
    border-radius: 20px;
  }

  body.login-redesign section.login .cover {
    background-position: 25% center;
  }

  body.login-redesign section.login .cover::before {
    top: -30%;
    left: -28%;
    width: 120%;
    height: 55%;
  }

  body.login-redesign section.login .cover::after {
    right: -32%;
    width: 62%;
  }

  body.login-redesign .login-page-title {
    top: 34px;
    left: 43%;
    width: 240px;
    font-size: 22px;
    white-space: normal;
  }

  body.login-redesign section .login-form {
    position: relative;
    inset: auto;
    height: auto;
    padding: 0;
    overflow: visible;
  }

  body.login-redesign section .login-form .tabs {
    width: 100%;
    max-width: 560px;
    min-width: 0;
    border-radius: 28px;
  }

  body.login-redesign section .login-form .tabs nav {
    min-height: 62px;
  }

  body.login-redesign section .login-form .tabs nav a {
    padding: 14px 10px;
    font-size: 13px;
  }

  body.login-redesign section .login-form .tabs .contents .content {
    padding: 32px 26px 36px;
  }

  body.login-redesign .login-form form .form-title {
    margin-bottom: 24px;
  }

  body.login-redesign .login-form form .form-title p {
    font-size: 14px;
  }

  body.login-redesign .login-form .login-field {
    margin-bottom: 22px;
  }

  body.login-redesign .login-form .login-field input {
    height: 50px;
    padding: 0 18px;
    border-radius: 13px;
    font-size: 14px;
  }

  body.login-redesign #tax_check_form .form-title {
    margin-bottom: 24px;
  }

  body.login-redesign #tax_check_form .form-title h2 {
    font-size: 20px;
  }

  body.login-redesign #tax_check_form #tax_number,
  body.login-redesign #tax_check_form #tax_number:focus {
    height: 50px;
    padding: 0 18px;
    border-radius: 13px;
    font-size: 14px;
  }

  body.login-redesign #tax_check_form .checkbox-item input {
    width: 25px;
    height: 25px;
    margin-right: 8px;
  }

  body.login-redesign #tax_check_form .checkbox-item label,
  body.login-redesign #tax_check_form #tax_check_button {
    font-size: 13px;
  }

  body.login-redesign #tax_check_form #tax_check_button {
    width: 145px;
    min-width: 120px;
    height: 42px;
    padding: 0 18px;
  }

  body.login-redesign .login-form .password-container #eye {
    right: 16px;
    font-size: 15px;
  }

  body.login-redesign .login-form .recovery-link {
    margin-top: 8px;
    font-size: 12px;
  }

  body.login-redesign .login-form .login-actions {
    gap: 16px;
  }

  body.login-redesign .login-form .login-actions .checkbox-item input {
    width: 25px;
    height: 25px;
    margin-right: 8px;
  }

  body.login-redesign .login-form .login-actions .checkbox-item label,
  body.login-redesign .login-form .login-actions .submit {
    font-size: 13px;
  }

  body.login-redesign .login-form .login-actions .submit {
    width: 145px;
    min-width: 120px;
    height: 42px;
    padding: 0 18px;
  }

  body.login-redesign footer {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    background: #fff;
  }

  body.login-redesign footer .tips-slider,
  body.login-redesign footer .mobile-stores {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    padding: 28px 24px !important;
    background: #fff;
    transform: none !important;
  }

  body.login-redesign footer .tips-slider .tips-heading,
  body.login-redesign footer .mobile-stores .app-stores-heading {
    margin-bottom: 18px;
    font-size: 16px;
  }

  body.login-redesign footer .tips-slider .swiper-slide {
    height: auto;
    min-height: 58px;
  }

  body.login-redesign footer .tips-slider .swiper-slide h4,
  body.login-redesign footer .tips-slider .swiper-slide h4 p {
    font-size: 15px;
  }

  body.login-redesign footer .tips-slider .controls {
    max-width: 180px;
  }

  body.login-redesign footer .tips-slider .controls .swiper-prev,
  body.login-redesign footer .tips-slider .controls .swiper-next {
    width: 44px;
    height: 44px;
  }

  body.login-redesign footer .mobile-stores {
    padding-top: 6px !important;
  }

  body.login-redesign footer .mobile-stores .supply-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px !important;
  }

  body.login-redesign footer .mobile-stores .supply-actions-img {
    width: 145px;
  }

  body.login-redesign footer > .inner {
    display: block;
    padding: 16px 20px;
    background: #1b2d89;
  }

  body.login-redesign footer ul.social {
    position: relative;
    inset: auto;
    flex-direction: row;
    justify-content: flex-end;
    width: 100%;
  }

  body.login-redesign footer ul.social li {
    width: 36px;
    height: 36px;
    margin: 0 0 0 8px;
  }

  body.login-redesign footer ul.social li a,
  body.login-redesign footer ul.social li a span {
    width: 36px;
    height: 36px;
  }
}

@media only screen and (max-width: 480px) {
  body.login-redesign section.login {
    padding-right: 10px;
    padding-left: 10px;
  }

  body.login-redesign section .login-form .tabs nav a {
    font-size: 11px;
  }

  body.login-redesign section .login-form .tabs .contents .content {
    padding: 28px 20px 32px;
  }

  body.login-redesign .login-form .login-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  body.login-redesign .login-form .login-actions .submit {
    width: 100%;
  }

  body.login-redesign #tax_check_form #tax_check_button {
    width: 100%;
  }
}
@media only screen and (min-width: 861px) {
  body.login-redesign::before {
    display: block;
  }

  body.login-redesign header {
    background: transparent;
  }

  body.login-redesign footer {
    z-index: 130;
  }

  body.login-redesign header .languages .inner ul li a,
  body.login-redesign header .languages .inner ul li a.selected {
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  body.login-redesign header .languages .inner ul li a {
    color: #fff !important;
  }

  body.login-redesign header .languages .inner ul li a.selected {
    color: var(--login-green) !important;
  }

  body.login-redesign section.login::before {
    display: none;
  }

  body.login-redesign section.login .cover {
    z-index: 1;
  }

  body.login-redesign footer .tips-slider .swiper-container .swiper-wrapper {
    margin-bottom: 3.2vh !important;
  }

  body.login-redesign footer .tips-slider .swiper-container .swiper-wrapper .swiper-slide {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    background: #fff !important;
  }
}
@media only screen and (min-width: 861px) {
  body.login-redesign .login-page-title {
    left: max(29.15%, 46.6vh);
  }

  body.login-redesign section .login-form .tabs .contents .content {
    padding-bottom: 7vh;
  }

  body.login-redesign .login-form .login-field + .login-field {
    margin-bottom: 1.5vh;
  }

  body.login-redesign .login-form .login-actions {
    align-items: flex-start;
  }

  body.login-redesign .login-form .login-actions .submit {
    margin-top: 5.2vh;
  }

  body.login-redesign footer .mobile-stores .supply-actions {
    gap: 0 !important;
  }
}
@media only screen and (max-width: 860px) {
  body.login-redesign footer .tips-slider .swiper-container .swiper-wrapper .swiper-slide {
    height: auto !important;
    min-height: 58px;
    max-height: 90px !important;
    background: #fff !important;
  }
}

/* Username and password recovery screens share the refreshed login shell. */
body.login-redesign.recovery-redesign section .login-form {
  padding-top: 18vh;
}

body.login-redesign.recovery-redesign section .login-form .tabs {
  width: clamp(410px, 38vw, 680px);
}

body.login-redesign.recovery-redesign section .login-form .tabs nav {
  min-height: 8.5vh;
}

body.login-redesign.recovery-redesign section .login-form .tabs nav a.selected {
  border-radius: clamp(28px, 3vw, 58px) clamp(28px, 3vw, 58px) 0 0;
  background: #d4d2c7;
}

body.login-redesign.recovery-redesign section .login-form .tabs .contents .content {
  padding: 4vh 3.8vw 5vh;
}

body.login-redesign.recovery-redesign .login-form .form,
body.login-redesign.recovery-redesign .login-form .form-item {
  width: 100%;
}

body.login-redesign.recovery-redesign .login-form .flex-form {
  gap: clamp(14px, 1.5vw, 28px);
  margin-bottom: 2.4vh !important;
}

body.login-redesign.recovery-redesign .login-form .form-item label {
  display: block;
  margin: 0 0 1vh;
  color: var(--login-navy);
}

body.login-redesign.recovery-redesign .login-form .form-item label h4 {
  color: inherit;
  font-size: clamp(12px, 1vw, 18px);
  font-weight: 700;
  line-height: 1.25;
}

body.login-redesign.recovery-redesign .login-form .form-item input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]) {
  display: block;
  width: 100%;
  height: 7vh;
  min-height: 44px;
  margin: 0;
  padding: 0 1.4vw;
  border: 1px solid #c2d2f0;
  border-radius: clamp(10px, 1.25vw, 24px);
  outline: 0;
  background: #fff;
  color: var(--login-navy);
  font-size: clamp(14px, 1.1vw, 20px);
  box-shadow: none;
}

body.login-redesign.recovery-redesign .login-form .form-item input:focus {
  border-color: var(--login-blue);
  box-shadow: 0 0 0 3px rgba(0, 50, 160, .1);
}

body.login-redesign.recovery-redesign .login-form .password-container {
  position: relative;
  width: 100%;
}

body.login-redesign.recovery-redesign .login-form .password-container #eye,
body.login-redesign.recovery-redesign .login-form .password-container #eye-confirm {
  right: 1.2vw;
  color: var(--login-navy);
}

body.login-redesign.recovery-redesign .login-form .form-item > .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  height: 6.2vh;
  min-height: 40px;
  margin: 0 10px 0 0;
  padding: 0 2vw;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(90deg, #ad45ef, #c45ee8);
  color: var(--login-navy);
  font-size: clamp(11px, 1vw, 18px);
  font-weight: 400;
  line-height: 1;
  text-transform: none;
}

body.login-redesign.recovery-redesign .login-form .form-item > .submit.basic {
  border-color: var(--login-navy);
  background: transparent;
}

body.login-redesign.recovery-redesign .login-form .form-item > .submit:hover,
body.login-redesign.recovery-redesign .login-form .form-item > .submit:focus {
  background: linear-gradient(90deg, #9e34e8, #b94fdf);
}

body.login-redesign.recovery-redesign .login-form .form-item > .submit.basic:hover,
body.login-redesign.recovery-redesign .login-form .form-item > .submit.basic:focus {
  background: rgba(0, 0, 76, .08);
}

body.login-redesign.recovery-redesign .login-form .registration-message {
  color: var(--login-navy);
  font-size: clamp(13px, 1.05vw, 19px);
  line-height: 1.5;
}

body.login-redesign.recovery-redesign .login-form .registration-message p {
  margin: 0;
}

body.login-redesign.recovery-redesign .login-form .registration-message p + p {
  margin-top: 2.5vh;
}

@media only screen and (max-width: 860px) {
  body.login-redesign.recovery-redesign section .login-form {
    padding: 96px 16px 32px;
  }

  body.login-redesign.recovery-redesign section .login-form .tabs {
    width: 100%;
    min-width: 0;
  }

  body.login-redesign.recovery-redesign section .login-form .tabs nav {
    min-height: 64px;
  }

  body.login-redesign.recovery-redesign section .login-form .tabs .contents .content {
    padding: 28px 20px 32px;
  }

  body.login-redesign.recovery-redesign .login-form .flex-form {
    display: block;
    margin-bottom: 20px !important;
  }

  body.login-redesign.recovery-redesign .login-form .flex-form .form-item + .form-item {
    margin-top: 18px;
  }

  body.login-redesign.recovery-redesign .login-form .form-item input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]) {
    height: 50px;
    padding: 0 16px;
  }

  body.login-redesign.recovery-redesign .login-form .form-item > .submit {
    width: 100%;
    height: 46px;
    margin: 0 0 10px;
  }
}
