/**
 * vh-auth — shell split (Magnific layout, VHIVHE tokens).
 */
.vh-auth-page {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 0;
  font-family: var(--vh-auth-font-family);
  font-size: var(--vh-auth-font-size-body);
  line-height: var(--vh-auth-line-height-body);
  color: var(--vh-auth-text-2);
  background: var(--vh-auth-shell-bg);
  -webkit-font-smoothing: antialiased;
}

.vh-auth-shell {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  padding: var(--vh-auth-shell-pad);
  overflow: hidden;
  background: var(--vh-auth-shell-bg);
}

@media (min-width: 1024px) {
  .vh-auth-shell {
    flex-direction: row;
  }
}

.vh-auth-aside {
  display: none;
  position: relative;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--vh-auth-radius-shell);
  background: #0f172a;
}

@media (min-width: 1024px) {
  .vh-auth-aside {
    display: flex;
    flex: 1 1 50%;
    max-width: 50%;
    min-height: 0;
  }
}

.vh-auth-aside__stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.vh-auth-aside__layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 500ms ease-in-out;
  pointer-events: none;
}

.vh-auth-aside__layer.is-active {
  opacity: 1;
}

.vh-auth-aside__layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vh-auth-aside__content {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
  padding: 5rem 2rem 2rem;
  text-align: left;
  background: var(--vh-auth-aside-gradient);
}

.vh-auth-aside__copy {
  position: relative;
  width: 100%;
}

.vh-auth-aside__slide-copy {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
}

.vh-auth-aside__slide-copy.is-active {
  display: flex;
}

.vh-auth-aside__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
  margin-left: -0.5rem;
  margin-bottom: -0.25rem;
}

.vh-auth-aside__tab {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  width: 5rem;
  min-width: 0;
  padding: 0.25rem 0.5rem;
  border: 0;
  border-radius: 0.375rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-family: inherit;
  font-size: 0.625rem;
  font-weight: var(--vh-auth-font-weight-medium);
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 150ms ease-in-out;
}

.vh-auth-aside__tab:hover {
  background: rgba(255, 255, 255, 0.08);
}

.vh-auth-aside__tab:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.vh-auth-aside__tab-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vh-auth-aside__tab-track {
  display: block;
  width: 100%;
  height: 0.25rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.vh-auth-aside__tab-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: #ffffff;
}

.vh-auth-aside__title {
  margin: 0;
  font-family: var(--vh-auth-font-family);
  font-size: 1.5rem;
  font-weight: var(--vh-auth-font-weight-bold);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.vh-auth-aside__text {
  margin: 0;
  font-size: var(--vh-auth-font-size-label);
  font-weight: var(--vh-auth-font-weight-medium);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.vh-auth-main {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  overflow-y: auto;
  border-radius: var(--vh-auth-radius-shell);
  background: var(--vh-auth-shell-bg);
}

@media (min-width: 1024px) {
  .vh-auth-main {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.vh-auth-main__inner {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--vh-auth-main-py) var(--vh-auth-main-px);
}

.vh-auth-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: var(--vh-auth-form-max);
}

.vh-auth-card__logo {
  display: flex;
  justify-content: center;
}

.vh-auth-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--vh-auth-stack-gap);
  color: var(--vh-auth-text-1);
}
