html,
body {
  height: 100%;
}

.login_page_new_ui {
  display: flex;
  font-weight: 400;
  height: 100%;
}

.login_page_new_ui .left {
  flex: 1;
  background: #F9F8FE;
  height: 100%;
}

.login_page_new_ui .right {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow-y: auto;
}

.brandLogo {
  width: 245px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  scroll-snap-type: x mandatory;
  overflow: hidden;
}

.carousel-item h1 {
  font-size: 30px;
  font-weight: 500;
  margin: 0;
  padding: 0;
  color: #707070;
  position: absolute;
  top: 10%;
  text-align: center;
  width: 540px;
}

.slide1-image {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 550px;
  height: 450px;
  background-size: contain;
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  scroll-behavior: smooth;
}

.carousel-item {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition: transform 0.5s ease-in-out;
}

.carousel-item.active {
  opacity: 1;
}

.carousel-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #D9E1E7;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.indicator.active {
  width: 30px;
  border-radius: 6px;
  background-color: #7958FF;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.stats-container h1 {
  position: static;
  width: 235px;
  text-align: left;
}

.stats-heading {
  position: static;
  top: auto;
  width: 350px;
  text-align: left;
}

.stats-grid {
  height: 270px;
  width: 270px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.stats-cell {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-cell-top-left {
  border-right: 1.1px solid black;
  border-bottom: 1.1px solid black;
}

.stats-cell-top-right {
  border-bottom: 1.1px solid black;
}

.stats-cell-bottom-left {
  border-right: 1.1px solid black;
}

.stats-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0px 3px;
}

.stats-number {
  font-size: 35px;
  font-weight: 500;
  font-style: normal;
}

.stats-label {
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  color: #3F3F3F;
  text-transform: uppercase;
}

.company-text {
  font-size: 12px;
  color: black;
  font-weight: 600;
  font-style: normal;
  text-align: center;
}

.company-logo {
  width: 570px;
  margin-top: 20px;
}

.form-wrapper {
  width: 325px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-wrapper h2 {
  color: #525252;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  text-align: center;
}

.form-wrapper p {
  color: #707070;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 6px 0px 15px 0px;
}

.form-wrapper h3 {
  color: #A1A1A1;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 20px 0px;
}

.login_page_new_ui form {
  display: grid;
  flex-direction: column;
  gap: 16px;
}

.login_page_new_ui form>* {
  position: relative;
}

.login_page_new_ui form p {
  margin: 0;
}

.login_page_new_ui form .error {
  color: #F47690;
  font-size: 14px;
}

label {
  color: #99B2C6;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 4px;
}

.login_page_new_ui form input:not([type="checkbox"]) {
  border: 1px solid #D9E1E7;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 15px;
  width: 100%;
}

.login_page_new_ui form input:focus {
  outline: none;
  border-color: #7958FF;
  box-shadow: 0 0 0 1px #7958FF;
}

.login_page_new_ui form button {
  padding: 6px 10px;
  border-radius: 8px;
  background: #7958FF;
  color: white;
  text-align: center;
  font-size: 14px;
}

.login_page_new_ui .field_errors {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  font-size: 16px;
  color: #F47690;
}

.login_page_new_ui .field_errors li {
  margin-top: .25rem;
}

input[type="checkbox"] {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: #7958FF;
  width: 20px;
  height: 20px;
  border: 1px solid #7958FF;
  border-radius: 6px;
  transform: translateY(-0.075em);
}

.btn-social {
  border: 1px solid #D9E1E7;
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #707070;
  font-size: 11px;
  font-weight: 600;
}

.social-icons {
  width: 20px;
  height: 20px;
}

.password-info-popup {
  position: absolute;
  background: white;
  border: 1px solid #D9E1E7;
  border-radius: 8px;
  padding: 8px 16px;
  width: 190px;
  display: none;
  z-index: 10;
  top: 3px;
  left: 90px;
}

.show-popup {
  display: block;
}

.password-requirement {
  color: #99B2C6;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 6px;
}

.password-info-icon {
  cursor: pointer;
}

.country-select-container {
  position: relative;
  max-width: 250px;
}

.select-button {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #D9E1E7;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 15px;
  width: 115px;
  background-color: white;
  cursor: pointer;
  color: #707070;
  position: relative;
}

.dropdown-arrow {
  width: 12px;
  height: 12px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.country-flag {
  width: 24px;
  height: 16px;
  object-fit: cover;
}

.country-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: none;
  background: white;
  border: 1px solid #D9E1E7;
  border-radius: 8px;
  z-index: 10;
  display: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.country-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 15px;
  color: #707070;
}

.country-option:hover {
  background-color: #F9F8FE;
}

.show {
  display: block;
}

@media (min-width: 1440px) {
  .carousel-item h1 {
    font-size: 35px;
    width: 560px;
  }

  .stats-container h1 {
    width: 285px;
  }

  .stats-container {
    gap: 12px;
  }

  .stats-number {
    font-size: 40px;
  }

  .stats-label {
    font-size: 16px;
  }

  .slide1-image {
    width: 625px;
    height: 570px;
  }

  .stats-grid {
    height: 350px;
    width: 350px;
  }

  .company-text {
    font-size: 16px;
  }

  .login_page_new_ui form {
    gap: 20px;
  }

  input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 6px;
  }
}

@media (min-width: 1920px) {
  .carousel-item h1 {
    font-size: 46px;
    width: 830px;
  }

  .stats-container h1 {
    width: 285px;
  }

  .stats-container {
    gap: 35px;
  }

  .stats-number {
    font-size: 50px;
  }

  .stats-label {
    font-size: 20px;
  }

  .slide1-image {
    width: 850px;
    height: 730px;
  }

  .stats-grid {
    height: 450px;
    width: 450px;
  }

  .company-text {
    font-size: 18px;
  }

  .company-logo {
    width: 830px;
  }

  .brandLogo {
    width: 325px;
    margin-bottom: 20px;
  }

  label {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .form-wrapper {
    width: 430px;
  }

  .form-wrapper h2 {
    font-size: 36px;
  }

  .form-wrapper p {
    font-size: 20px;
    margin: 10px 0px 22px 0px;
  }

  .form-wrapper h3 {
    font-size: 14px;
    margin: 32px 0px;
  }

  .btn-social {
    font-size: 14px;
    padding: 8px 12px;
    gap: 12px;
  }

  .social-icons {
    width: 25px;
    height: 25px;
  }

  .login_page_new_ui form input:not([type="checkbox"]) {
    font-size: 20px;
    padding: 10px 14px;
  }

  .login_page_new_ui form button {
    padding: 8px 12px;
    font-size: 20px;
  }

  .login_page_new_ui form {
    grid-gap: 28px;
  }

  .secondary-text {
    font-size: 14px;
  }

  .select-button {
    font-size: 20px;
    width: 125px;
  }

  .country-option {
    font-size: 20px;
  }

  input[type="checkbox"] {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }
}

@media (min-width: 2560px) {
  .carousel-item h1 {
    font-size: 60px;
    top: 140px;
    width: 960px;
  }

  .slide1-image {
    width: 1100px;
    height: 940px;
  }
}



/* OLD CSS */
.login_page_new_ui .tips {
  max-width: 520px;
  border-radius: 8px;
  border: 1px solid var(--sand_300);
  background: var(--sand_0);
  box-shadow: 0 2px 6px 0 var(--sand_300);
  padding: 16px;
  margin: 18vh 60px 0 60px;
  position: relative;
  z-index: 3;
}

.login_page_new_ui .tips:after {
  content: '';
  width: 115px;
  height: 83px;
  position: absolute;
  bottom: -72px;
  left: 16px;
  background: url("../images/heidi-tip.2e3228516929.svg") no-repeat center center;
}

.login_page_new_ui .tips .title {
  font-size: 16px;
  font-style: normal;
  font-weight: bold;
  line-height: 24px;
  letter-spacing: 0.15px;
  margin-bottom: 8px;
}

.login_page_new_ui .tips .description {
  font-size: .875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.25px;
}

.login_page_new_ui .tips .description a {
  color: var(--primary_link);
  font-size: .875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  text-decoration: underline;
}

.login_page_new_ui .tips .description a:hover {
  text-decoration: none;
}

.login_page_new_ui .toggle {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: stretch;
}

.login_page_new_ui .toggle>* {
  flex-grow: 1;
  text-align: center;
  padding: .75rem 0;
  font-size: 1rem;
  color: var(--sand_500);
  border-top: 2px solid transparent;
}

.login_page_new_ui .toggle>*.active {
  border-color: var(--primary_link);
  color: var(--primary_link);
}

.login_page_new_ui .toggle>*:hover {
  color: var(--grape_700);
  border-color: var(--grape_700);
}

.auto-generated form {
  width: 100%;
}

.auto-generated form label {
  display: block;
}

.auto-generated form input {
  height: 40px;
  min-height: 40px;
  background: var(--sand_0);
  font-size: 1rem;
  line-height: 22px;
  border: 1px solid var(--sand_300);
  box-sizing: border-box;
  border-radius: 5px;
  padding: 0 16px;
  transition: box-shadow 80ms ease;
}

.auto-generated p:empty {
  display: none;
}

.auto-generated form ul li:not(:last-child) {
  margin-bottom: 0.5em;
}

.auto-generated form ul {
  margin-bottom: 0;
}

.form-group {
  display: block;
  margin-bottom: .5rem;
}

.form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.form-group label {
  position: relative;
  cursor: pointer;
  font-size: .875rem;
}

.form-group label a {
  font-family: 'Hellix', sans-serif !important;
  font-weight: 500;
}

.secondary-text {
  font-size: 12px;
  font-weight: 400;
  color: #A1A1A1;
}

.form-group label:before {
  content: '';
  background-color: transparent;
  border: 1px solid #CAC5B8;
  padding: 10px;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  top: -1px;
}

.form-group input:checked+label:before {
  background: var(--primary_link);
  border: 1px solid var(--primary_link);
}

.form-group input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 1px;
  left: 8px;
  width: 5px;
  height: 12px;
  border: solid var(--sand_0);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.text-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .875rem;
}

.text-wrapper a {
  color: var(--primary_link);
  text-decoration: underline;
  font-weight: 500;
}

.text-wrapper a:hover {
  text-decoration: none;
}

.container {
  display: flex;
  justify-content: space-between;
}