:root {
  --primary-purple: color(srgb 0.443137 0.196078 0.960784);
  --primary-purple-hover: #4b36c0;
  --fill-ds-brand-brand: #7132f5;
  --bg-color: #f9f9fb;
  --text-color: #0d0d0d;
  --text-secondary: #666;
  --error-red: color(srgb 0.666667 0.00392157 0.196078);
  --error-bg: color(srgb 0.960784 0.223529 0.368627 / 0.0784314);
  --input-bg: #f2f2f5;
  --input-border: transparent;
  --input-focus-border: color(srgb 0.443137 0.196078 0.960784);
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  --font-family: Kraken-Product, "IBM Plex Sans", Helvetica, Arial, sans-serif;
  --stroke-ds-dropdown-button-content-icon: #686b82;
  --stroke-ds-icon-dimmed: #9497a9;
  --text-color-ds-brand-brand: #7132f5;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
}

[x-cloak] {
  display: none !important;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::before,
*::after {
  box-sizing: border-box;
}

.w-40 {
  width: 10rem;
}

img,
video {
  max-width: 100%;
  height: auto;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 32px;
}

.header-logo {
  height: 24px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-btn {
  background: #ebebef;
  border: none;
  padding: 6px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 14px;
  color: color(srgb 0.407843 0.419608 0.509804);
  cursor: pointer;
  font-weight: 500;
}

.globe-icon {
  color: #666;
}

.chevron-icon {
  color: #666;
  margin-left: 4px;
}

.create-account-btn {
  background: color(srgb 0.521569 0.356863 0.984314 / 0.160784);
  color: color(srgb 0.443137 0.196078 0.960784);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s;
}

.create-account-btn:hover {
  background: #e1e1e5;
}

.w-18 {
  width: 1.125rem;
}

.h-18 {
  height: 1.125rem;
}

.login-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: start;
}

.login-card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  width: 100%;
  margin-top: 1rem;
  max-width: 496px;
  text-align: center;
}

.account-locked-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 48px 32px;
}

.card-header {}

.card-logo {
  width: 80px;
  height: auto;
  margin-bottom: 24px;
}

.card-header h1 {
  font-family: Kraken-Brand, "IBM Plex Sans", Helvetica, Arial, sans-serif;
  color: color(srgb 0.0627451 0.0666667 0.0784314);
  font-size: 28px;
  font-weight: 500;
  margin: 24px 0;
  margin-top: 16px;
}

.form-group {
  text-align: left;
  margin-bottom: 2px;
}

.input-wrapper {
  position: relative;
  background: color(srgb 0.407843 0.419608 0.509804 / 0.0784314);
  border-radius: 8px;
  border: 2px solid var(--input-border);
  transition: border-color 0.2s, background-color 0.2s;
}

.input-wrapper.fc {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  overflow: clip;
}

.input-wrapper.lc {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.input-wrapper:focus-within {
  background: white;
  border-color: var(--input-focus-border);
}

.input-wrapper.error {
  background: white;
  border-color: #f5395e;
}

.stroke-current {
  stroke: currentColor;
}

.input-wrapper input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  color: var(--text-color);
  outline: none;
  height: 52px;
  text-indent: 12px;
  padding-top: 16px;
}

input[name="username"] {}

.stroke-ds-dropdown-button-content-icon path {
  stroke: color-mix(in srgb,
      var(--stroke-ds-dropdown-button-content-icon),
      transparent calc(100% - 100% * 1));
}

.stroke-ds-icon-dimmed {
  stroke: color-mix(in srgb,
      var(--stroke-ds-icon-dimmed),
      transparent calc(100% - 100% * 1));
}

.fill-transparent {
  fill: transparent;
}

.input-wrapper label {
  position: absolute;
  left: 12px;
  top: 14px;
  font-size: 14px;
  color: #6e6e73;
  transition: all 0.2s ease;
  pointer-events: none;
}

.input-wrapper input:focus~label,
.input-wrapper input:not(:placeholder-shown)~label {
  top: 8px;
  font-size: 12px;
}

.toggle-password {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #6e6e73;
  padding: 4px;
}

.error-message {
  background: var(--error-bg);
  color: var(--error-red);
  padding: 8px;
  border-radius: 8px;
  font-size: 12px;
  text-align: left;
  margin-top: 4px;
}

.form-links {
  text-align: left;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

.form-links a {
  color: var(--primary-purple);
  text-decoration: none;
}

.form-links a:hover {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  background: var(--primary-purple);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: inherit;
}

.submit-btn:hover {
  background: var(--primary-purple-hover);
}

.cant-sign-in {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

.cant-sign-in a {
  color: var(--primary-purple);
  text-decoration: none;
}

.main-footer {
  padding: 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.main-footer a {
  color: #6e6e73;
  text-decoration: none;
  font-size: 14px;
}

.main-footer a:hover {
  text-decoration: underline;
}

.fill-ds-brand-brand {
  fill: color-mix(in srgb,
      var(--fill-ds-brand-brand),
      transparent calc(100% - 100% * 1));
}

.mt-ds-0 {
  margin-top: 0;
}

.ms-ds-0 {
  margin-inline-start: 0;
}

.me-ds-0 {
  margin-inline-end: 0;
}

.mb-ds-0 {
  margin-bottom: 0;
}

.text-ds-brand-brand {
  --tw-text-opacity: 1;
  color:
    color-mix(in srgb, var(--text-color-ds-brand-brand), transparent calc(100% - 100% * var(--tw-text-opacity)));
}

header.mobile-header {
  display: none;
}

header.main-header {
  display: flex;
}

@media (max-width: 768px) {
  body {
    background-color: #FFF;
  }

  header.mobile-header {
    display: block;
  }

  header.main-header {
    display: none;
  }

  .card-header video {
    display: none;
  }

  .card-header h1 {
    text-align: left;
  }

  .mobile.lang-btn {
    margin-top: 8px;
    margin-left: auto;
    margin-right: 8px;
  }

  .logo-container {
    margin-left: 12px;
  }

  .account-locked-card {
    min-height: 400px;
    padding: 32px 20px;
  }

  .locked-content {
    max-width: 100%;
  }

  .locked-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
  }

  .locked-title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .locked-message {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .locked-divider {
    margin-bottom: 24px;
  }

  .phone-link {
    padding: 14px 24px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }
}

.stroke-transparent {
  stroke: transparent;
}

.fill-current {
  fill: currentColor;
}

.flex {
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header hr {
  background-color: color(srgb 0.407843 0.419608 0.509804 / 0.160784);
  height: 1px;
  color: transparent;
  opacity: .3;
}

.dflex {
  display: flex;
}

.mt-ds-0 {
  margin-top: 0;
}

.ms-ds-0 {
  margin-inline-start: 0;
}

.me-ds-0 {
  margin-inline-end: 0;
}

.mb-ds-0 {
  margin-bottom: 0;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.w-ds-icon-sm {
  width: 20px;
}

.h-ds-icon-sm {
  height: 20px;
}

@keyframes ds-kit-drawer-fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.animate-ds-kit-drawer-fadeIn {
  animation: ds-kit-drawer-fadeIn .5s cubic-bezier(.32, .72, 0, 1)
}

@keyframes pulse {
  50% {
    opacity: .5
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite
}

@keyframes spin {
  to {
    transform: rotate(1turn)
  }
}

.animate-spin {
  animation: spin 1s linear infinite
}

.to-current {
  --tw-gradient-to: currentColor var(--tw-gradient-to-position);
}

.from-transparent {
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.bg-\[conic-gradient\(from_20deg_at_50\%_50\%\2c var\(--tw-gradient-stops\)\)\] {
  background-image: conic-gradient(from 20deg at 50% 50%, var(--tw-gradient-stops));
  background-color: #ffffffbc;
}

.perfect-center {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-full {
  width: 100%;
  height: 100%;
}

.pointer-events-none {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}

[aria-label="Show password"] svg {
  width: 20px;
  height: 20px;
}

.locked-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 440px;
}

.locked-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
  color: var(--error-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.locked-icon svg {
  width: 100%;
  height: 100%;
}

.locked-title {
  font-family: Kraken-Brand, "IBM Plex Sans", Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: color(srgb 0.0627451 0.0666667 0.0784314);
  margin-bottom: 16px;
  line-height: 1.3;
}

.locked-message {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 100%;
}

.locked-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, color(srgb 0.407843 0.419608 0.509804 / 0.3), transparent);
  margin: 0 auto 32px;
}

.locked-phone-section {
  width: 100%;
}

.locked-phone-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-purple);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  box-shadow: 0 4px 12px color(srgb 0.443137 0.196078 0.960784 / 0.25);
  position: relative;
  overflow: hidden;
}

.phone-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.phone-link:hover::before {
  left: 100%;
}

.phone-link:hover {
  background: var(--primary-purple-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color(srgb 0.443137 0.196078 0.960784 / 0.35);
}

.phone-link:active {
  transform: translateY(0);
}

.phone-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@font-face {
  font-family: Kraken-Product;
  src: url(../fonts/Kraken-Product-Regular.87314a06.woff2) format("woff2");
}

@font-face {
  font-family: Kraken-Product;
  font-style: oblique;
  src: url(../fonts/Kraken-Product-Regular-Oblique.63d4adb0.woff2) format("woff2");
}

@font-face {
  font-family: Kraken-Product;
  font-weight: 700;
  src: url(../fonts/Kraken-Product-Bold.989d8b60.woff2) format("woff2");
}

@font-face {
  font-family: Kraken-Product;
  font-weight: 700;
  font-style: oblique;
  src: url(../fonts/Kraken-Product-Bold-Oblique.66948637.woff2) format("woff2");
}

@font-face {
  font-family: Kraken-Product;
  font-weight: 500;
  src: url(../fonts/Kraken-Product-Medium.4e284e61.woff2) format("woff2");
}

@font-face {
  font-family: Kraken-Product;
  font-weight: 500;
  font-style: oblique;
  src: url(../fonts/Kraken-Product-Medium-Oblique.a437ccba.woff2) format("woff2");
}

@font-face {
  font-family: Kraken-Product;
  font-weight: 600;
  src: url(../fonts/Kraken-Product-SemiBold.c1979ff9.woff2) format("woff2");
}

@font-face {
  font-family: Kraken-Product;
  font-weight: 600;
  font-style: oblique;
  src: url(../fonts/Kraken-Product-SemiBold-Oblique.5e770118.woff2) format("woff2");
}

@font-face {
  font-family: Kraken-Mono;
  src: url(../fonts/Kraken-Mono-Regular.76c3f31a.woff2) format("woff2");
}

@font-face {
  font-family: Kraken-Mono;
  font-style: oblique;
  src: url(../fonts/Kraken-Mono-Regular-Oblique.ce999bfa.woff2) format("woff2");
}

@font-face {
  font-family: Kraken-Mono;
  font-weight: 500;
  src: url(../fonts/Kraken-Mono-Medium.6290a171.woff2) format("woff2");
}

@font-face {
  font-family: Kraken-Mono;
  font-weight: 500;
  font-style: oblique;
  src: url(../fonts/Kraken-Mono-Medium-Oblique.553e39ab.woff2) format("woff2");
}

@font-face {
  font-family: Kraken-Brand;
  src: url(../fonts/Kraken-Brand-Regular.7c23fd8b.woff2) format("woff2");
}

@font-face {
  font-family: Kraken-Brand;
  font-weight: 700;
  src: url(../fonts/Kraken-Brand-Bold.ea25a794.woff2) format("woff2");
}

@font-face {
  font-family: Kraken-Brand;
  font-weight: 500;
  src: url(../fonts/Kraken-Brand-Medium.a83a834c.woff2) format("woff2");
}

@font-face {
  font-family: Kraken-Brand;
  font-weight: 1000;
  src: url(../fonts/Kraken-Brand-ExtraBlack.ecacc2e0.woff2) format("woff2");
}