
/* =========================================
   META108 REGISTER & LOGIN SECTION
========================================= */

.auth-meta108 {
  --auth-navy-950: #020817;
  --auth-navy-900: #051229;
  --auth-navy-850: #071a36;
  --auth-navy-800: #092247;
  --auth-blue-700: #0665db;
  --auth-blue-600: #087ff5;
  --auth-blue-500: #1b9cff;
  --auth-blue-400: #55b8ff;
  --auth-blue-300: #94d4ff;
  --auth-white: #ffffff;
  --auth-text: #dcecff;
  --auth-muted: #91a9c8;
  --auth-border: rgba(103, 187, 255, 0.17);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 110px 20px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(8, 127, 245, 0.17),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #030d1e 0%,
      var(--auth-navy-900) 50%,
      var(--auth-navy-950) 100%
    );
  color: var(--auth-white);
}

.auth-meta108 *,
.auth-meta108 *::before,
.auth-meta108 *::after {
  box-sizing: border-box;
}

.auth-meta108__container {
  position: relative;
  z-index: 2;
  width: min(100%, 1200px);
  margin: 0 auto;
}

/* Background Decoration */
.auth-meta108__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(15px);
}

.auth-meta108__glow--left {
  top: 24%;
  left: -230px;
  width: 480px;
  height: 480px;
  background: rgba(6, 101, 219, 0.11);
}

.auth-meta108__glow--right {
  right: -220px;
  bottom: 5%;
  width: 500px;
  height: 500px;
  background: rgba(27, 156, 255, 0.09);
}

/* Header */
.auth-meta108__header {
  max-width: 860px;
  margin: 0 auto 52px;
  text-align: center;
}

.auth-meta108__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 9px 16px;
  border: 1px solid rgba(85, 184, 255, 0.25);
  border-radius: 999px;
  background: rgba(8, 127, 245, 0.09);
  color: var(--auth-blue-300);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-meta108__eyebrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-meta108__header h2 {
  margin: 0;
  color: var(--auth-white);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.auth-meta108__header h2 span {
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--auth-blue-400),
    var(--auth-blue-500)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.auth-meta108__header p {
  max-width: 760px;
  margin: 23px auto 0;
  color: var(--auth-muted);
  font-size: 17px;
  line-height: 1.8;
}

/* Register and Login Grid */
.auth-meta108__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.auth-meta108__card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--auth-border);
  border-radius: 27px;
  background:
    linear-gradient(
      145deg,
      rgba(13, 38, 75, 0.95),
      rgba(5, 18, 39, 0.98)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 23px 58px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.auth-meta108__card::before {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(27, 156, 255, 0.09);
  content: "";
  pointer-events: none;
}

.auth-meta108__card::after {
  position: absolute;
  right: 30px;
  bottom: 0;
  left: 30px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(85, 184, 255, 0.55),
    transparent
  );
  content: "";
}

.auth-meta108__card--register {
  border-color: rgba(85, 184, 255, 0.32);
  background:
    radial-gradient(
      circle at top right,
      rgba(27, 156, 255, 0.15),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      rgba(8, 55, 108, 0.95),
      rgba(5, 19, 41, 0.98)
    );
}

.auth-meta108__card:hover {
  transform: translateY(-7px);
  border-color: rgba(85, 184, 255, 0.46);
  box-shadow:
    0 30px 72px rgba(0, 0, 0, 0.34),
    0 0 36px rgba(8, 127, 245, 0.09);
}

/* Card Header */
.auth-meta108__card-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin-bottom: 22px;
}

.auth-meta108__icon {
  display: inline-flex;
  width: 61px;
  height: 61px;
  flex: 0 0 61px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(85, 184, 255, 0.3);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(27, 156, 255, 0.2),
      rgba(6, 101, 219, 0.07)
    );
  color: var(--auth-blue-400);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 13px 28px rgba(0, 78, 175, 0.14);
}

.auth-meta108__icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-meta108__card-title {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 12px;
}

.auth-meta108__number {
  color: rgba(148, 212, 255, 0.32);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.auth-meta108__label {
  display: block;
  margin-bottom: 7px;
  color: var(--auth-blue-300);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.auth-meta108__card h3 {
  margin: 0;
  color: var(--auth-white);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.auth-meta108__intro {
  position: relative;
  z-index: 2;
  margin: 0 0 24px;
  color: var(--auth-muted);
  font-size: 14px;
  line-height: 1.75;
}

/* Steps */
.auth-meta108__steps {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.auth-meta108__steps li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px;
  border: 1px solid rgba(103, 187, 255, 0.12);
  border-radius: 16px;
  background: rgba(4, 17, 37, 0.46);
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.auth-meta108__steps li:hover {
  border-color: rgba(85, 184, 255, 0.29);
  background: rgba(8, 53, 104, 0.35);
}

.auth-meta108__step-number {
  display: inline-flex;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(85, 184, 255, 0.26);
  border-radius: 10px;
  background: rgba(27, 156, 255, 0.1);
  color: var(--auth-blue-300);
  font-size: 11px;
  font-weight: 900;
}

.auth-meta108__steps strong {
  display: block;
  margin-bottom: 5px;
  color: var(--auth-white);
  font-size: 14px;
  line-height: 1.35;
}

.auth-meta108__steps p {
  margin: 0;
  color: var(--auth-muted);
  font-size: 11px;
  line-height: 1.65;
}

/* Checklist */
.auth-meta108__requirements {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(85, 184, 255, 0.17);
  border-radius: 17px;
  background: rgba(8, 34, 70, 0.5);
}

.auth-meta108__requirements-title {
  display: block;
  margin-bottom: 12px;
  color: var(--auth-white);
  font-size: 13px;
  font-weight: 800;
}

.auth-meta108__requirements ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.auth-meta108__requirements li {
  position: relative;
  padding-left: 23px;
  color: var(--auth-text);
  font-size: 11px;
  line-height: 1.5;
}

.auth-meta108__requirements li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--auth-blue-500),
    var(--auth-blue-700)
  );
  box-shadow: 0 0 14px rgba(27, 156, 255, 0.26);
  content: "";
}

.auth-meta108__requirements li::after {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 5px;
  height: 3px;
  border-bottom: 1.4px solid #fff;
  border-left: 1.4px solid #fff;
  content: "";
  transform: rotate(-45deg);
}

/* Buttons */
.auth-meta108__button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: auto;
  padding: 14px 21px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.auth-meta108__button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-meta108__button--primary {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(
    135deg,
    var(--auth-blue-500),
    var(--auth-blue-700)
  );
  color: var(--auth-white);
  box-shadow:
    0 14px 31px rgba(6, 101, 219, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.auth-meta108__button--secondary {
  border: 1px solid rgba(85, 184, 255, 0.31);
  background: rgba(8, 127, 245, 0.08);
  color: var(--auth-blue-300);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.auth-meta108__button:hover {
  transform: translateY(-3px);
}

.auth-meta108__button--primary:hover {
  box-shadow:
    0 19px 39px rgba(6, 101, 219, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.auth-meta108__button--secondary:hover {
  border-color: rgba(85, 184, 255, 0.55);
  background: rgba(8, 127, 245, 0.15);
  color: var(--auth-white);
}

/* Support */
.auth-meta108__support {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 26px;
  margin-top: 27px;
  padding: 28px;
  border: 1px solid var(--auth-border);
  border-radius: 24px;
  background:
    linear-gradient(
      110deg,
      rgba(6, 101, 219, 0.2),
      rgba(6, 24, 51, 0.94)
    );
  box-shadow:
    0 23px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.auth-meta108__support-content {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.auth-meta108__support-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(85, 184, 255, 0.28);
  border-radius: 16px;
  background: rgba(27, 156, 255, 0.11);
  color: var(--auth-blue-400);
}

.auth-meta108__support-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-meta108__support-label {
  display: block;
  margin-bottom: 8px;
  color: var(--auth-blue-300);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.auth-meta108__support h3 {
  margin: 0 0 9px;
  color: var(--auth-white);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.auth-meta108__support p {
  margin: 0;
  color: var(--auth-muted);
  font-size: 13px;
  line-height: 1.7;
}

.auth-meta108__support-list {
  display: grid;
  gap: 10px;
}

.auth-meta108__support-list div {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 12px;
  border: 1px solid rgba(85, 184, 255, 0.12);
  border-radius: 13px;
  background: rgba(3, 15, 34, 0.42);
}

.auth-meta108__support-list span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(27, 156, 255, 0.1);
  color: var(--auth-blue-300);
  font-size: 9px;
  font-weight: 900;
}

.auth-meta108__support-list p {
  font-size: 11px;
}

/* Security Cards */
.auth-meta108__security {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: 27px;
}

.auth-meta108__security-item {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--auth-border);
  border-radius: 18px;
  background: rgba(7, 25, 52, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.auth-meta108__security-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(85, 184, 255, 0.22);
  border-radius: 13px;
  background: rgba(27, 156, 255, 0.08);
  color: var(--auth-blue-400);
}

.auth-meta108__security-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-meta108__security-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--auth-white);
  font-size: 13px;
  line-height: 1.35;
}

.auth-meta108__security-item p {
  margin: 0;
  color: var(--auth-muted);
  font-size: 10px;
  line-height: 1.55;
}

/* Accessibility */
.auth-meta108__button:focus-visible {
  outline: 3px solid rgba(148, 212, 255, 0.75);
  outline-offset: 4px;
}

/* Tablet */
@media (max-width: 1024px) {
  .auth-meta108 {
    padding: 90px 20px;
  }

  .auth-meta108__support {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .auth-meta108 {
    padding: 72px 16px;
  }

  .auth-meta108__header {
    margin-bottom: 37px;
  }

  .auth-meta108__eyebrow {
    margin-bottom: 17px;
    padding: 8px 13px;
    font-size: 10px;
  }

  .auth-meta108__header h2 {
    font-size: clamp(30px, 10vw, 41px);
    line-height: 1.15;
  }

  .auth-meta108__header p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.75;
  }

  .auth-meta108__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .auth-meta108__card {
    padding: 23px 19px;
    border-radius: 21px;
  }

  .auth-meta108__card:hover {
    transform: translateY(-3px);
  }

  .auth-meta108__card-head {
    gap: 13px;
  }

  .auth-meta108__icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    border-radius: 16px;
  }

  .auth-meta108__icon svg {
    width: 26px;
    height: 26px;
  }

  .auth-meta108__card-title {
    gap: 9px;
  }

  .auth-meta108__number {
    font-size: 20px;
  }

  .auth-meta108__card h3 {
    font-size: 20px;
  }

  .auth-meta108__steps li {
    padding: 13px;
  }

  .auth-meta108__support {
    margin-top: 18px;
    padding: 21px 18px;
    border-radius: 20px;
  }

  .auth-meta108__support-content {
    gap: 13px;
  }

  .auth-meta108__support-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 14px;
  }

  .auth-meta108__support h3 {
    font-size: 19px;
  }

  .auth-meta108__security {
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 18px;
  }
}

/* Small Mobile */
@media (max-width: 390px) {
  .auth-meta108 {
    padding-right: 13px;
    padding-left: 13px;
  }

  .auth-meta108__header h2 {
    font-size: 29px;
  }

  .auth-meta108__card {
    padding-right: 17px;
    padding-left: 17px;
  }

  .auth-meta108__card-head {
    flex-direction: column;
  }

  .auth-meta108__card-title {
    width: 100%;
  }

  .auth-meta108__support-content {
    flex-direction: column;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .auth-meta108__card,
  .auth-meta108__steps li,
  .auth-meta108__button {
    transition: none;
  }
}