/**
 * Auth shell: login, register wizard, forgot password.
 */
.vntix-auth-page {
  --vntix-navy: #0a1f4d;
  --vntix-primary: #007fda;
  --vntix-accent: #e11d48;
  --vntix-border: #e5e7eb;
  --vntix-muted: #6b7280;
  --vntix-subtle: #8c8c8c;
  min-height: 100vh;
  background: #faf8f3;
  display: flex;
  flex-direction: column;
}

.vntix-auth-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 0 24px;
  background: var(--vntix-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 20;
  flex-shrink: 0;
}

.vntix-auth-top__logo {
  text-decoration: none;
  line-height: 1;
}

.vntix-auth-top__brand {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 33px;
}

.vntix-auth-top__brand-vn {
  color: #fff;
}

.vntix-auth-top__brand-tix {
  color: var(--vntix-accent);
}

.vntix-auth-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.vntix-auth-tabs__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.vntix-auth-tabs__item.is-active {
  background: var(--vntix-accent);
  border-color: var(--vntix-accent);
  color: #fff;
}

.vntix-auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
  min-height: calc(100vh - 60px);
}

.vntix-auth-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 60px);
}

.vntix-auth-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vntix-auth-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vntix-auth-hero__bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.vntix-auth-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 31, 77, 0.45) 0%, rgba(10, 31, 77, 0.82) 100%);
}

.vntix-auth-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 60px);
  padding: 54px 60px 48px;
  box-sizing: border-box;
}

.vntix-auth-hero__top {
  flex-shrink: 0;
  margin-bottom: 0;
}

.vntix-auth-hero__logo-link {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
}

.vntix-auth-hero__logo {
  display: block;
  width: 233px;
  max-width: min(233px, 70vw);
  height: auto;
}

.vntix-auth-hero__eyebrow-wrap {
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  max-width: 100%;
}

.vntix-auth-hero__content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 0 24px;
  max-width: 720px;
}

.vntix-auth-hero__content--login {
  justify-content: center;
}

.vntix-auth-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 100%;
}

.vntix-auth-hero__copy .vntix-auth-hero__title {
  margin: 0;
}

.vntix-auth-hero__copy .vntix-auth-hero__lead {
  margin: 0;
}

.vntix-auth-hero__eyebrow {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
  line-height: 24px;
  color: #fff;
}

.vntix-auth-hero__content > .vntix-auth-hero__eyebrow {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 8px;
  margin-bottom: 16px;
  display: inline-block;
}

.vntix-auth-hero__title {
  font-family: Roboto, sans-serif;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.1;
  font-weight: 500;
  margin: 0 0 16px;
  letter-spacing: -1px;
}

.vntix-auth-hero__title em {
  display: block;
  color: var(--vntix-accent);
  font-style: italic;
  font-weight: 500;
}

.vntix-auth-hero__lead {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin: 0;
  max-width: 560px;
}

.vntix-auth-hero__stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0 0;
  margin-top: auto;
  flex-shrink: 0;
}

.vntix-auth-hero__stat {
  flex: 1;
  min-width: 140px;
  max-width: 260px;
}

.vntix-auth-hero__stat strong {
  display: block;
  font-family: Roboto, sans-serif;
  font-size: 36px;
  font-weight: 600;
  font-style: italic;
  line-height: 44px;
}

.vntix-auth-hero__stat span {
  display: block;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-top: 4px;
}

.vntix-auth-hero__benefits-title {
  font-size: 16px;
  text-transform: uppercase;
  opacity: 0.6;
  margin: 0 0 12px;
}

.vntix-auth-hero__benefits ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vntix-auth-hero__benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.vntix-auth-hero__benefits li::before {
  content: none;
}

.vntix-auth-hero__benefit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.vntix-auth-hero__benefits--bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: auto;
  flex-shrink: 0;
}

.vntix-auth-hero__benefits--bottom ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vntix-auth-hero__content--register {
  justify-content: center;
}

.vntix-auth-panel {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  position: relative;
  min-height: calc(100vh - 60px);
  overflow: auto;
}

.vntix-auth-panel__toolbar {
  padding: 23px 24px 0;
  align-items: center;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.vntix-auth-panel__lang {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  z-index: 5;
  flex-shrink: 0;
}

.vntix-auth-page .vntix-auth-panel__lang.header-language {
  display: inline-flex !important;
  align-items: center;
  background: #fff !important;
  border: 1px solid var(--vntix-border) !important;
  border-radius: 99px !important;
  height: 32px;
  min-height: 32px;
  min-width: 0;
  box-shadow: none;
  overflow: visible;
  padding: 0;
  cursor: pointer;
}

.vntix-auth-page .vntix-auth-panel__lang.header-language .header-language-trigger {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 100%;
  padding: 6px 11px !important;
  gap: 4px;
  border-radius: 99px !important;
  border: 0 !important;
  background: transparent !important;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  white-space: nowrap;
}

.vntix-auth-page .vntix-auth-lang-icon {
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.vntix-auth-page .vntix-auth-lang-icon--globe {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.vntix-auth-page .vntix-auth-lang-icon--chevron {
  width: 12px;
  height: 7px;
}

.vntix-auth-page .vntix-auth-panel__lang.header-language .header-language-current {
  color: #595959;
}

.vntix-auth-page .vntix-auth-panel__lang.header-language .header-language-menu {
  right: 0;
  left: auto;
}

.vntix-auth-panel__body {
  width: 100%;
  max-width: 485px;
  margin: 0 auto;
  /*padding: 24px 24px 40px;*/
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.vntix-auth-panel__footer {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 24px 24px 40px;
  text-align: center;
  font-size: 16px;
  color: #0c0c0c;
  box-sizing: border-box;
  flex-shrink: 0;
}

.vntix-auth-panel__footer--register {
  /*border-top: 1px solid var(--vntix-border);*/
  margin-top: 0;
  padding-top: 24px;
}

.vntix-auth-panel__footer-link {
  color: var(--vntix-primary);
  font-weight: 500;
  text-decoration: none;
}

.vntix-text-accent {
  color: var(--vntix-accent);
}

.vntix-hidden {
  display: none !important;
}

/* Form items */
.vntix-auth-panel .form-item {
  margin-bottom: 16px;
}

.vntix-auth-panel .form-item > label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: var(--vntix-navy);
  margin-bottom: 4px;
}

.vntix-auth-panel .form-required {
  color: var(--vntix-accent);
}

.vntix-auth-panel input[type="text"],
.vntix-auth-panel input[type="email"],
.vntix-auth-panel input[type="password"],
.vntix-auth-panel select {
  width: 100%;
  height: 48px;
  padding: 8px 12px;
  border: 1px solid var(--vntix-border);
  border-radius: 8px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #0c0c0c;
  box-sizing: border-box;
  background: #fff;
}

.vntix-auth-panel input:focus,
.vntix-auth-panel select:focus {
  border-color: var(--vntix-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 127, 218, 0.12);
}

/* Ngày sinh — jQuery UI datepicker */
.vntix-auth-panel .form-item-birthday input.vntix-date-input {
  padding-right: 44px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 2v2H5a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2V6a2 2 0 00-2-2h-2V2h-2v2H9V2H7zm12 8H5v10h14V10z' fill='%23667085'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px 20px;
}

.vntix-auth-page #ui-datepicker-div {
  z-index: 10050;
  font-family: Roboto, sans-serif;
  font-size: 14px;
}

.vntix-auth-panel .description {
  font-size: 12px;
  color: var(--vntix-subtle);
  margin-top: 4px;
}

.vntix-auth-submit,
.vntix-auth-panel .form-submit {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 8px;
  background: var(--vntix-primary);
  color: #fff !important;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  cursor: pointer;
  margin: 0;
}

.vntix-login-form .form-actions {
  margin: 0;
  padding: 0;
}

.vntix-auth-panel__title {
  font-family: Roboto, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--vntix-navy);
  margin: 0 0 8px;
  line-height: 40px;
}

.vntix-auth-panel__subtitle {
  font-family: Roboto, sans-serif;
  color: var(--vntix-muted);
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  max-width: 488px;
}

/* Login */
.vntix-login-form {
  display: flex;
  flex-direction: column;
  gap: 34px;
  width: 100%;
}

.vntix-login-form .vntix-auth-panel__head {
  margin: 0;
}

.vntix-login-form__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.vntix-login-form .form-item-name,
.vntix-login-form .form-item-pass {
  margin-bottom: 0;
}

.vntix-login-form .form-required {
  display: none;
}

.vntix-login-form input::placeholder {
  color: #9ca3af;
}

.vntix-login-form__divider {
  border: none;
  border-top: 1px solid var(--vntix-border);
  margin: 0;
  width: 100%;
}

.vntix-login-form__register {
  margin: 0;
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #0c0c0c;
}

.vntix-login-form__register-link {
  color: var(--vntix-primary);
  font-weight: 500;
  text-decoration: none;
  font-weight: bold;
}

.vntix-login-form__register-link:hover {
  text-decoration: underline;
}

.vntix-login-form__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  gap: 16px;
}

.vntix-login-form__forgot {
  color: var(--vntix-primary);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 24px;
  font-weight: bold;
}

.vntix-login-form .form-type-password {
  position: relative;
}

/* Checkbox "Nhớ đăng nhập" — Drupal: input rồi label (không bọc trong label) */
.vntix-login-form__row .form-item-remember-me,
.vntix-login-form .form-item.form-type-checkbox {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 6px !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
}

.vntix-login-form__row .form-item-remember-me input[type="checkbox"],
.vntix-login-form .form-type-checkbox input[type="checkbox"] {
  float: none !important;
  position: static !important;
  display: block !important;
  flex: 0 0 24px;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px;
  margin: 0 !important;
  accent-color: var(--vntix-primary);
  order: 0;
}

.vntix-login-form__row .form-item-remember-me label,
.vntix-login-form .form-type-checkbox label {
  display: block !important;
  float: none !important;
  position: static !important;
  width: auto !important;
  max-width: none;
  padding: 0 !important;
  margin: 0 !important;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
  cursor: pointer;
  order: 1;
  white-space: normal;
}

.vntix-pass-toggle {
  position: absolute;
  right: 9px;
  bottom: 12px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vntix-auth-panel .form-type-password input[type="password"],
.vntix-auth-panel .form-type-password input[type="text"] {
  padding-right: 44px;
}

/* Wizard */
.vntix-wizard--register {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.vntix-wizard--register .vntix-wizard__progress {
  margin-bottom: 0;
}

.vntix-wizard--register .vntix-wizard__meta {
  margin-bottom: 0;
}

.vntix-wizard--register .vntix-wizard__head {
  margin-bottom: 0;
}

.vntix-wizard--register .vntix-wizard__subtitle {
  margin-bottom: 0;
}

.vntix-wizard--register .vntix-wizard__nav {
  margin-top: 0;
}

.vntix-wizard__progress {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.vntix-wizard__progress-seg {
  flex: 1;
  height: 5px;
  border-radius: 16px;
  background: #dbdfe7;
}

.vntix-wizard__progress-seg.is-done {
  background: var(--vntix-navy);
}

.vntix-wizard__progress-seg.is-current {
  background: var(--vntix-accent);
}

.vntix-wizard__meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--vntix-subtle);
  margin-bottom: 16px;
}

.vntix-wizard__meta strong {
  color: var(--vntix-navy);
}

.vntix-wizard__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--vntix-navy);
  margin: 0 0 8px;
}

.vntix-wizard__subtitle {
  color: var(--vntix-muted);
  margin: 0 0 24px;
}

.vntix-wizard__step {
  display: none;
}

.vntix-wizard__step--active {
  display: block;
}

.vntix-account-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0;
}

.vntix-account-card {
  position: relative;
  display: block;
  margin: 0;
  cursor: pointer;
  min-height: 134px;
}

.vntix-account-card__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.vntix-account-card__ring {
  display: none;
  position: absolute;
  inset: -3px;
  border-radius: 15px;
  border: 3px solid rgba(0, 127, 218, 0.1);
  pointer-events: none;
}

.vntix-account-card.is-selected .vntix-account-card__ring {
  display: block;
}

.vntix-account-card__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  min-height: 134px;
  box-sizing: border-box;
  border: 1px solid var(--vntix-border);
  border-radius: 12px;
  padding: 24px;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
}

.vntix-account-card.is-selected .vntix-account-card__inner {
  border-color: var(--vntix-primary);
  background: rgba(0, 127, 218, 0.15);
}

.vntix-account-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.vntix-account-card__icon {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.vntix-account-card__check {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}

.vntix-account-card__check--on {
  display: none;
}

.vntix-account-card__check--off {
  display: block;
}

.vntix-account-card.is-selected .vntix-account-card__check--on {
  display: block;
}

.vntix-account-card.is-selected .vntix-account-card__check--off {
  display: none;
}

.vntix-account-card__body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vntix-account-card__title {
  display: block;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--vntix-navy);
}

.vntix-account-card__desc {
  display: block;
  margin-top: 0;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--vntix-subtle);
}

.vntix-wizard__step1-fields {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
}

.vntix-wizard__step1-fields .form-item-tel {
  margin-bottom: 0;
}

.vntix-wizard__step1-fields .form-item-tel .description {
  margin: 4px 0 0;
  padding: 0;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  line-height: 20px;
  color: var(--vntix-subtle);
}

.vntix-otp-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  padding: 4px 16px;
  border: 0;
  border-radius: 8px;
  background: rgba(10, 31, 77, 0.15);
  color: var(--vntix-navy);
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  cursor: pointer;
  align-self: flex-start;
}

.vntix-otp-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.vntix-otp-btn__icon {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  object-fit: contain;
}

/* Step 4 */
.vntix-wizard__step4 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.vntix-wizard__step4 .form-item-ref-code-display {
  margin-bottom: 0;
}

.vntix-wizard__step4 .form-item-ref-code-display .description {
  margin: 4px 0 0;
  padding: 0;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  line-height: 20px;
  color: var(--vntix-subtle);
}

.vntix-wizard__field-label {
  display: block;
  margin: 0 0 4px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--vntix-navy);
}

.vntix-wizard__required {
  color: var(--vntix-accent);
}

.vntix-source-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.vntix-source-chip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--vntix-border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  box-sizing: border-box;
  min-height: 56px;
}

.vntix-source-chip__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.vntix-source-chip__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.vntix-source-chip__check--on {
  display: none;
}

.vntix-source-chip__check--off {
  display: block;
}

.vntix-source-chip.is-selected {
  border-color: var(--vntix-primary);
  background: rgba(0, 127, 218, 0.15);
}

.vntix-source-chip.is-selected .vntix-source-chip__check--on {
  display: block;
}

.vntix-source-chip.is-selected .vntix-source-chip__check--off {
  display: none;
}

.vntix-source-chip__label {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--vntix-navy);
}

.vntix-wizard__field--sources.error .vntix-source-chips {
  outline: 1px solid var(--vntix-accent);
  outline-offset: 2px;
  border-radius: 12px;
}

.vntix-auth-page .page-login,
.vntix-auth-page .wrapper.page-login {
  height: auto;
  min-height: 0;
}

.vntix-wizard__notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #f4f7fe;
  border-radius: 12px;
  padding: 8px 16px;
  margin: 0;
}

.vntix-wizard__notice-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  object-fit: contain;
}

.vntix-wizard__notice-text {
  margin: 0;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--vntix-navy);
}

.vntix-wizard__notice-text strong {
  font-weight: 500;
}

.vntix-wizard__step4-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vntix-wizard__step4-checks .form-item.form-type-checkbox {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 6px !important;
  margin: 0 !important;
}

.vntix-wizard__step4-checks .form-type-checkbox input[type="checkbox"] {
  flex: 0 0 24px;
  width: 24px !important;
  height: 24px !important;
  margin: 0 !important;
  accent-color: var(--vntix-primary);
}

.vntix-wizard__step4-checks .form-type-checkbox label {
  flex: 1;
  margin: 0 !important;
  padding: 0 !important;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #434343;
  cursor: pointer;

}
.vntix-wizard__step4-checks .form-type-checkbox label .title{
  padding-left: 32px !important;
}
.vntix-wizard__step4-checks .form-type-checkbox label a {
  font-weight: 500;
  color: var(--vntix-navy);
  text-decoration: none;
}

.vntix-wizard__step4-checks .form-type-checkbox label a:hover {
  text-decoration: underline;
}

.vntix-wizard__nav {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.vntix-wizard__btn {
  flex: 1;
  height: 48px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.vntix-wizard__btn--back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--vntix-border);
  color: var(--vntix-primary);
}

.vntix-wizard__btn-icon--back {
  width: 12px;
  height: 12px;
}

.vntix-wizard__btn--next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--vntix-primary);
  border: none;
  color: #fff;
}

.vntix-wizard__btn-icon {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  object-fit: contain;
}

.vntix-wizard__nav--step4 .vntix-wizard__btn--back,
.vntix-wizard__nav--step4 .vntix-wizard__submit-wrap {
  flex: 1;
  min-width: 0;
}

.vntix-wizard__nav--step4 .vntix-wizard__submit-wrap {
  display: flex;
}

.vntix-wizard__submit-wrap .form-submit,
.vntix-wizard__btn--submit {
  flex: 1;
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 8px;
  background: var(--vntix-primary);
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  cursor: pointer;
  padding: 8px 24px;
  box-sizing: border-box;
}

.vntix-wizard__submit-wrap .form-submit:hover,
.vntix-wizard__btn--submit:hover {
  background: #006bb8;
}

.vntix-form-hidden {
  display: none !important;
}

body.page-user .vntix-auth-page #console {
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  max-width: 480px;
  width: calc(100% - 48px);
}

@media (max-width: 960px) {
  .vntix-auth-layout {
    grid-template-columns: 1fr;
  }

  .vntix-auth-hero {
    min-height: 320px;
  }

  .vntix-auth-hero__inner {
    padding: 32px 24px 24px;
  }

  .vntix-auth-hero__logo {
    width: 180px;
    max-width: 70vw;
  }

  .vntix-auth-hero__content {
    padding: 12px 0 20px;
  }

  .vntix-auth-hero__stats {
    padding-top: 24px;
  }

  .vntix-auth-panel__toolbar,
  .vntix-auth-panel__body {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .vntix-auth-panel__body {
    padding-top: 16px;
    justify-content: flex-start;
  }

  .vntix-login-form__row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .vntix-login-form__forgot {
    margin-left: auto;
  }

  .vntix-account-cards {
    grid-template-columns: 1fr;
  }
}
.vntix-login-form__row .form-item-remember-me label{
  display: flex !important;
  align-items: center;
  gap: 10px;
}
