@charset "UTF-8";
:root {
  --color-primary: #00bfff;
  --color-primary-dark: #0099cc;
  --color-primary-darker: #0077aa;
  --color-primary-light: #38bdf8;
  --color-bg-dark: #0a0e27;
  --color-bg-mid: #1a1f3a;
  --color-bg-card: rgba(26, 31, 58, 0.95);
  --color-bg-input: rgba(10, 14, 39, 0.5);
  --color-bg-input-focus: rgba(10, 14, 39, 0.7);
  --color-bg-input-readonly: rgba(10, 14, 39, 0.3);
  --color-bg-floating: rgba(10, 14, 39, 0.85);
  --color-bg-floating-hover: rgba(30, 41, 59, 0.95);
  --color-text-primary: #fff;
  --color-text-secondary: rgba(255, 255, 255, 0.9);
  --color-text-muted: rgba(255, 255, 255, 0.7);
  --color-text-dim: rgba(255, 255, 255, 0.6);
  --color-text-faint: rgba(255, 255, 255, 0.5);
  --color-text-placeholder: rgba(255, 255, 255, 0.4);
  --color-error: #F03b63;
  --color-success: #28a745;
  --color-success-light: #4dc964;
  --color-dark: #0D0D0D;
  --color-border: rgba(0, 191, 255, 0.15);
  --color-border-subtle: rgba(255, 255, 255, 0.08);
  --color-border-focus: rgba(0, 191, 255, 0.3);
  --color-border-error: rgba(240, 59, 99, 0.4);
  --color-border-success: rgba(40, 167, 69, 0.4);
  --font-family-regular: "Overpass Regular", sans-serif;
  --font-family-bold: "Overpass Bold", sans-serif;
  --font-family-black: "Overpass Black", sans-serif;
  --font-family-mono: 'Courier New', Courier, monospace;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.8125rem;
  --font-size-md: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 0.9375rem;
  --font-size-xl: 1.125rem;
  --font-size-2xl: 1.25rem;
  --font-size-3xl: 1.5rem;
  --font-size-4xl: 1.75rem;
  --font-size-5xl: 2rem;
  --font-size-6xl: 2.5rem;
  --font-size-h1: 2rem;
  --font-size-h2: 1.5rem;
  --font-size-h3: 1.25rem;
  --font-size-h4: 1.125rem;
  --font-size-body: 1rem;
  --font-size-small: 0.8125rem;
  --font-size-caption: 0.75rem;
  --line-height-tight: 1.2;
  --line-height-snug: 1.3;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.6;
  --line-height-loose: 1.8;
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.02em;
  --letter-spacing-wider: 0.05em;
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-7: 2rem;
  --spacing-8: 2.5rem;
  --spacing-9: 3rem;
  --spacing-10: 4rem;
  --space-section: 2.5rem;
  --space-component: 1.5rem;
  --space-element: 1rem;
  --space-inline: 0.5rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-elevated: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 20px rgba(0, 191, 255, 0.15);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 191, 255, 0.15);
  --shadow-button: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-button-hover: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-input-focus: 0 0 0 3px rgba(0, 191, 255, 0.15);
  --shadow-focus-ring: 0 0 0 3px rgba(0, 191, 255, 0.3);
  --shadow-floating: 0 8px 24px rgba(0, 0, 0, 0.4);
  --icon-size-sm: 1rem;
  --icon-size-md: 1.25rem;
  --icon-size-lg: 1.5rem;
  --icon-size-xl: 2rem;
  --icon-gap: 0.5rem;
  --transition-base: all 0.3s ease;
  --transition-fast: all 0.2s ease;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --z-floating: 9999;
  --z-card: 10;
  --z-background: 0;
  --card-padding: 1.25rem;
  --card-padding-lg: 1.5rem;
  --card-padding-sm: 1rem;
  --card-radius: 1rem;
  --card-border-width: 1px;
  --input-height: 3rem;
  --input-height-sm: 2.5rem;
  --input-padding-x: 1rem;
  --input-padding-y: 0.75rem;
  --input-radius: 0.75rem;
  --input-border-width: 1px;
  --input-focus-ring-width: 3px;
  --button-height: 3rem;
  --button-height-lg: 3.25rem;
  --button-height-sm: 2.375rem;
  --button-padding-x: 1.5rem;
  --button-radius: 0.75rem;
  --max-width-form: 24rem;
  --max-width-card-login: 36rem;
  --max-width-card-landing: 48rem;
  --breakpoint-mobile: 425px;
  --breakpoint-tablet: 768px;
  --breakpoint-desktop: 1024px;
}

@font-face {
  font-family: "Overpass Bold";
  src: local("Overpass Bold"), local("Overpass-Bold"), url("../fonts/Overpass-Bold.woff2") format("woff2"), url("../fonts/Overpass-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Overpass Regular";
  src: local("Overpass Regular"), local("Overpass-Regular"), url("../fonts/Overpass-Regular.woff2") format("woff2"), url("../fonts/Overpass-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Overpass Black";
  src: local("Overpass Black"), local("Overpass-Black"), url("../fonts/Overpass-Black.woff2") format("woff2"), url("../fonts/Overpass-Black.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Overpass Regular", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
  min-height: 100vh;
  margin: 0;
  position: relative;
  overflow: hidden;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 191, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(0, 191, 255, 0.05) 0%, transparent 50%), radial-gradient(circle at 40% 20%, rgba(0, 191, 255, 0.08) 0%, transparent 50%);
  animation: subtle-shift 20s ease-in-out infinite;
  z-index: 0;
}

@keyframes subtle-shift {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  33% {
    transform: translateX(10px) translateY(-10px);
  }
  66% {
    transform: translateX(-10px) translateY(10px);
  }
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-family: "Overpass Bold", sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #fff;
  text-align: center;
  width: 100%;
}

h2 {
  font-family: "Overpass Regular", sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  line-height: 1.3;
}

h3 {
  font-family: "Overpass Bold", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #fff;
}

h4 {
  font-family: "Overpass Bold", sans-serif;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
}
p:last-child {
  margin-bottom: 0;
}

.hero-subtitle {
  font-family: "Overpass Regular", sans-serif;
  font-size: 1.25rem;
  color: #38bdf8;
  margin: 0 0 2.5rem 0;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

p.error {
  margin: 0;
}

p.error > span {
  font-size: 2rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: rotate(360deg);
    opacity: 1;
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes softPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 191, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 191, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 191, 255, 0);
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background: rgba(10, 14, 39, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 768px) {
  .site-header {
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 425px) {
  .site-header {
    padding: 0.5rem 0.75rem;
  }
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease;
}
.site-brand:hover {
  color: #00bfff;
}
.site-brand img {
  height: 2rem;
  width: auto;
}
@media (max-width: 425px) {
  .site-brand img {
    height: 1.5rem;
  }
}

.site-brand-text {
  font-family: "Overpass Bold", sans-serif;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  color: inherit;
}
@media (max-width: 425px) {
  .site-brand-text {
    font-size: 0.875rem;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
}
.site-nav-link:hover {
  color: #00bfff;
  background: rgba(0, 191, 255, 0.1);
}
.site-nav-link .external-icon {
  opacity: 0.6;
}
@media (max-width: 425px) {
  .site-nav-link {
    font-size: 0.75rem;
    padding: 0.25rem;
  }
}

.page-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 4rem;
}
@media (max-width: 768px) {
  .page-container {
    padding-top: 3.5rem;
  }
}
@media (max-width: 425px) {
  .page-container {
    padding-top: 3rem;
  }
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: #00bfff;
  color: #0D0D0D;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  z-index: 10000;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.5);
}

main {
  background: rgba(26, 31, 58, 0.95);
  border: 1px solid rgba(0, 191, 255, 0.15);
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 191, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  padding: 3rem;
  min-width: 32rem;
  max-width: 36rem;
  width: 90%;
  position: relative;
  z-index: 10;
}

header {
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 2.5rem;
  width: 100%;
}
header img {
  margin: 0;
  width: 12rem;
  filter: brightness(1.1);
}

article {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

section {
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

button.btn {
  border-radius: 0.5rem;
  max-width: 24rem;
}

@media (max-width: 1024px) {
  .page-login,
  .page-signup {
    padding: 1.5rem;
    min-height: calc(100vh - 3rem);
  }
}
@media (max-width: 425px) {
  .page-login,
  .page-signup {
    padding: 1rem;
  }
}
@media (max-width: 1024px) {
  .page-login main,
  .page-signup main {
    padding: 2.5rem 2.5rem;
    min-width: unset;
    width: 100%;
    max-width: 28rem;
    margin: auto;
  }
}
@media (max-width: 425px) {
  .page-login main,
  .page-signup main {
    max-width: unset;
    min-width: unset;
    width: calc(100% - 2rem);
    min-height: calc(100% - 2rem);
    padding: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .page-login header img,
  .page-signup header img {
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .page-login h1,
  .page-signup h1 {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }
}
.page-login section > a.btn,
.page-signup section > a.btn {
  background: linear-gradient(135deg, #00bfff, #0099cc);
  border: none;
  border-radius: 0.75rem;
  color: #0D0D0D;
  cursor: pointer;
  font-family: "Overpass Regular", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  height: 3rem;
  width: 100%;
  max-width: 24rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  line-height: 1.2;
  margin: 1.5rem auto;
  padding: 0;
  border-radius: 0.5rem;
  max-width: 24rem;
}
@media (max-width: 1024px) {
  .page-login section > a.btn,
  .page-signup section > a.btn {
    font-size: 0.75rem;
    margin: 1rem auto;
    max-width: 100%;
  }
}
.page-login section > form,
.page-signup section > form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 24rem;
  padding-top: 1.5rem;
  width: 100%;
  text-align: center;
}
@media (max-width: 1024px) {
  .page-login section > form,
  .page-signup section > form {
    max-width: 100%;
  }
}
.page-login section label,
.page-signup section label {
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0 auto 1rem;
  width: 100%;
  max-width: 24rem;
  text-align: center;
}
.page-login section label em,
.page-signup section label em {
  color: #F03b63;
  font-size: 0.875rem;
  font-family: "Overpass Bold", sans-serif;
  font-style: normal;
  line-height: 1.6;
  margin-top: 0.25rem;
}
@media (max-width: 1024px) {
  .page-login section label,
  .page-signup section label {
    margin-top: 0.75rem;
  }
}
.page-login section button.btn,
.page-signup section button.btn {
  background-color: #00bfff;
  color: #0D0D0D;
  display: block;
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.9375rem;
  height: 2.375rem;
  margin: 1rem auto 0;
  max-width: 24rem;
  width: 100%;
}
@media (max-width: 1024px) {
  .page-login section button.btn,
  .page-signup section button.btn {
    font-size: 0.75rem;
    margin: 1rem auto;
    max-width: 100%;
  }
}
.page-login section > span,
.page-signup section > span {
  display: block;
  font-family: "Overpass Regular", sans-serif;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 24rem;
  text-align: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .page-login section > span,
  .page-signup section > span {
    max-width: 100%;
  }
}
.page-login section h2,
.page-signup section h2 {
  font-family: "Overpass Regular", sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.3;
  margin: 0 0 1.5rem 0;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}
.page-login section #direct-auth-form,
.page-login section #email-code-form,
.page-signup section #direct-auth-form,
.page-signup section #email-code-form {
  width: 100%;
  max-width: 24rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.direct-auth-btn,
.email-code-btn {
  background: linear-gradient(135deg, #00bfff, #0099cc);
  border: none;
  border-radius: 0.75rem;
  color: #0D0D0D;
  cursor: pointer;
  font-family: "Overpass Regular", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  height: 3rem;
  width: 100%;
  max-width: 24rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.direct-auth-btn:focus-visible,
.email-code-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.3);
}
.direct-auth-btn,
.email-code-btn {
  margin: 0 auto;
}
.direct-auth-btn:hover:not(:disabled),
.email-code-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #0099cc, #0077aa);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.direct-auth-btn:disabled,
.email-code-btn:disabled {
  background: rgba(0, 191, 255, 0.4);
  color: rgba(255, 255, 255, 0.7);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.direct-auth-btn.is-loading .btn-text,
.email-code-btn.is-loading .btn-text {
  display: none;
}
.direct-auth-btn.is-loading .btn-loading,
.email-code-btn.is-loading .btn-loading {
  display: flex;
}
.direct-auth-btn .btn-loading,
.email-code-btn .btn-loading {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.btn-signup {
  background: linear-gradient(135deg, #00bfff, #0099cc);
  border: none;
  border-radius: 0.75rem;
  color: #0D0D0D;
  cursor: pointer;
  font-family: "Overpass Regular", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  height: 3rem;
  width: 100%;
  max-width: 24rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.btn-signup:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.3);
}
.btn-signup {
  max-width: 28rem;
  margin: 1.5rem auto 0 auto;
}
.btn-signup:hover:not(:disabled) {
  background: linear-gradient(135deg, #0099cc, #0077aa);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.btn-signup:disabled {
  background: rgba(0, 191, 255, 0.4);
  color: rgba(255, 255, 255, 0.7);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-signup.is-loading .btn-text {
  display: none;
}
.btn-signup.is-loading .btn-loading {
  display: flex;
}
.btn-signup .btn-loading {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.login-btn {
  display: inline-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00bfff;
}
.login-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.3);
}
.login-btn {
  border: none;
  border-radius: 0.75rem;
  color: #0D0D0D;
  font-family: "Overpass Regular", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  height: 3.25rem;
  padding: 0 2.5rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}
.login-btn:hover {
  background: #0099cc;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.login-btn:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .login-btn {
    width: 100%;
    max-width: 24rem;
  }
}

.discord-cta {
  background-color: #5865F2;
  font-family: "Overpass Regular", sans-serif;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin-top: 1rem;
}
.discord-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.3);
}
.discord-cta:hover {
  background-color: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.resend-btn {
  background: none;
  border: none;
  border-radius: 0.5rem;
  color: #00bfff;
  cursor: pointer;
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.5;
  text-decoration: underline;
  transition: color 0.2s ease;
  padding: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.resend-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.3);
}
.resend-btn:hover:not(:disabled) {
  color: #0099cc;
}
.resend-btn:disabled {
  color: rgba(255, 255, 255, 0.5);
  cursor: not-allowed;
  text-decoration: none;
}
.resend-btn.is-loading .loading-spinner {
  width: 12px;
  height: 12px;
  border-width: 2px;
}

.change-email-link {
  background: none;
  border: none;
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.5;
  text-decoration: underline;
  transition: color 0.2s ease;
  padding: 0.25rem;
  margin-top: 1rem;
}
.change-email-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.3);
}
.change-email-link:hover {
  color: #00bfff;
}

.loading-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  border-top-color: currentColor;
  border-right-color: currentColor;
  animation: spin 0.7s linear infinite;
}

.direct-auth-form,
.email-code-form {
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.5s ease;
}

.auth-form-title {
  font-family: "Overpass Regular", sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.email-group {
  margin-bottom: 1rem;
  width: 100%;
  max-width: 24rem;
}

.email-input {
  background: rgba(10, 14, 39, 0.5);
  border: 1px solid rgba(0, 191, 255, 0.15);
  border-radius: 0.75rem;
  color: #fff;
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.9375rem;
  height: 3rem;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.5;
}
.email-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  text-align: center;
}
.email-input:focus {
  outline: none;
  border-color: rgba(0, 191, 255, 0.3);
  background: rgba(10, 14, 39, 0.7);
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.15);
}
.email-input:focus::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.email-input:invalid {
  border-color: #F03b63;
}
@media (max-width: 425px) {
  .email-input {
    font-size: 16px;
  }
}

.signup-form {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.form-group {
  margin-bottom: 1rem;
  width: 100%;
  max-width: 28rem;
}

.form-label {
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  display: inline-block;
  width: 100%;
}

.form-input {
  background: rgba(10, 14, 39, 0.5);
  border: 1px solid rgba(0, 191, 255, 0.15);
  border-radius: 0.75rem;
  color: #fff;
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.9375rem;
  height: 3rem;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.5;
}
.form-input::placeholder {
  color: rgb(153, 153, 153);
  opacity: 1;
}
.form-input:focus {
  outline: none;
  border-color: rgba(0, 191, 255, 0.3);
  background: rgba(10, 14, 39, 0.7);
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.15);
}
.form-input[readonly] {
  background: rgba(10, 14, 39, 0.3);
  color: rgba(255, 255, 255, 0.7);
  cursor: not-allowed;
}
.form-input:invalid {
  border-color: #F03b63;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.error-message {
  color: #F03b63;
  font-size: 0.875rem;
  font-family: "Overpass Bold", sans-serif;
  font-style: normal;
  line-height: 1.6;
  margin-top: 0.25rem;
  display: none;
}
.error-message.show {
  display: block;
}

.form-input.is-error,
.email-input.is-error {
  border-color: #F03b63;
}

.debug-message {
  color: lime;
  font-weight: bold;
}

.code-entry-section {
  display: none;
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.3s ease;
}
.code-entry-section.active {
  display: flex;
}

.code-sent-info {
  text-align: center;
  margin-bottom: 1.5rem;
}

.code-sent-info-text {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0 0 0.5rem 0;
}

.email-display {
  color: #00bfff;
  font-weight: 600;
}

.expiry-info {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}

.code-input-single {
  width: 100%;
  max-width: 16rem;
  height: 3.5rem;
  background: rgba(10, 14, 39, 0.5);
  border: 2px solid rgba(0, 191, 255, 0.15);
  border-radius: 0.75rem;
  color: #00bfff;
  font-family: "Courier New", Courier, monospace;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.75rem;
  padding-left: 0.75rem;
  transition: all 0.2s ease;
  margin-bottom: 1.5rem;
}
.code-input-single::placeholder {
  color: rgba(0, 191, 255, 0.3);
  letter-spacing: 0.5rem;
  font-size: 1.5rem;
}
.code-input-single:focus {
  outline: none;
  border-color: rgba(0, 191, 255, 0.3);
  background: rgba(10, 14, 39, 0.7);
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.15);
}
.code-input-single.error {
  border-color: #F03b63;
  animation: shake 0.3s ease;
}
@media (max-width: 425px) {
  .code-input-single {
    font-size: 16px;
  }
}

.resend-section {
  margin-top: 1.5rem;
  text-align: center;
  width: 100%;
}

.resend-text {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: 0;
}

.countdown {
  color: #F03b63;
  font-weight: bold;
}

.email-entry-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.email-entry-section.hidden {
  display: none;
}

.passwordless-section {
  margin-top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.5s ease;
}
@media (max-width: 1024px) {
  .passwordless-section {
    padding: 0 1rem;
  }
}
@media (max-width: 425px) {
  .passwordless-section {
    padding: 0 0.75rem;
  }
}

@media (max-width: 1024px) {
  .direct-auth-form,
  .email-code-form,
  .email-group,
  .direct-auth-btn,
  .email-code-btn {
    max-width: 100%;
  }
}
@media (max-width: 425px) {
  .signup-form,
  .form-group,
  .btn-signup {
    max-width: 22rem;
  }
}
.security-info {
  background: rgba(0, 191, 255, 0.05);
  border: 1px solid rgba(0, 191, 255, 0.15);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin: 0 auto 1.5rem auto;
  width: 100%;
  max-width: 24rem;
  animation: fadeIn 0.5s ease;
}
.security-info.is-hidden {
  display: none;
}
@media (max-width: 1024px) {
  .security-info {
    padding: 1rem;
    max-width: 100%;
    margin: 0 0 1.5rem 0;
  }
}
@media (max-width: 425px) {
  .security-info {
    padding: 0.75rem;
    margin: 0 0 1rem 0;
  }
}

.security-info-title {
  color: #00bfff;
  font-family: "Overpass Bold", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  margin: 0 0 0.75rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .security-info-title {
    font-size: 0.875rem;
  }
}

.security-info-description {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0 0 0.75rem 0;
  text-align: center;
}
@media (max-width: 1024px) {
  .security-info-description {
    font-size: 0.75rem;
  }
}

.security-features {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: fit-content;
}
.security-features li {
  color: #fff;
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.5;
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  opacity: 0.9;
}
.security-features li::before {
  content: "✓";
  color: #00bfff;
  font-weight: bold;
  margin-right: 0.75rem;
  font-size: 0.875rem;
}
@media (max-width: 1024px) {
  .security-features li {
    font-size: 0.75rem;
  }
}

.feature-card {
  background: rgba(0, 191, 255, 0.05);
  border: 1px solid rgba(0, 191, 255, 0.15);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 191, 255, 0.3);
}
@media (max-width: 1024px) {
  .feature-card {
    padding: 1rem;
  }
}

.feature-card-title {
  font-family: "Overpass Bold", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.2;
  color: #00bfff;
  margin: 0 0 0.5rem 0;
}

.feature-card-description {
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem auto;
  background: #00bfff;
  border-radius: 0.5rem;
  color: #0D0D0D;
}
@media (max-width: 425px) {
  .feature-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.icon-device::before,
.icon-api::before,
.icon-security::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: currentColor;
}
@media (max-width: 425px) {
  .icon-device::before,
  .icon-api::before,
  .icon-security::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.icon-device::before {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M4 6h16v2H4zm0 5h16v2H4zm0 5h16v2H4z'/%3E%3Crect x='8' y='4' width='8' height='16' rx='1' fill='none' stroke='currentColor' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M4 6h16v2H4zm0 5h16v2H4zm0 5h16v2H4z'/%3E%3Crect x='8' y='4' width='8' height='16' rx='1' fill='none' stroke='currentColor' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-api::before {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-security::before {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.about-section {
  background: rgba(10, 14, 39, 0.6);
  border: 1px solid rgba(0, 191, 255, 0.15);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10;
  position: relative;
}
@media (max-width: 768px) {
  .about-section {
    padding: 1.25rem;
  }
}

.about-section-title {
  font-family: "Overpass Bold", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 1rem 0;
}
@media (max-width: 768px) {
  .about-section-title {
    font-size: 1.125rem;
  }
}

.about-section-text {
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.875rem;
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0 0 0.75rem 0;
}
.about-section-text:last-child {
  margin-bottom: 0;
}

.signup-info {
  margin-bottom: 1rem;
  width: 100%;
}

.status {
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 191, 255, 0.15);
  color: #fff;
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 1rem auto;
  padding: 1rem;
  width: 100%;
  max-width: 24rem;
  text-align: center;
  background: rgba(0, 191, 255, 0.08);
  border-color: rgba(0, 191, 255, 0.3);
  animation: fadeIn 0.3s ease;
}
.status.is-hidden {
  display: none;
}
.status--info {
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 191, 255, 0.15);
  color: #fff;
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 1rem auto;
  padding: 1rem;
  width: 100%;
  max-width: 24rem;
  text-align: center;
  background: rgba(0, 191, 255, 0.08);
  border-color: rgba(0, 191, 255, 0.3);
}
.status--error {
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 191, 255, 0.15);
  color: #fff;
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 1rem auto;
  padding: 1rem;
  width: 100%;
  max-width: 24rem;
  text-align: center;
  background: rgba(240, 59, 99, 0.08);
  border-color: rgba(240, 59, 99, 0.4);
  color: #F03b63;
}
.status--success {
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 191, 255, 0.15);
  color: #fff;
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 1rem auto;
  padding: 1rem;
  width: 100%;
  max-width: 24rem;
  text-align: center;
  background: rgba(40, 167, 69, 0.1);
  border-color: rgba(40, 167, 69, 0.4);
  color: #4dc964;
}
.status.code-status {
  margin-bottom: 1rem;
}

.status-message {
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 191, 255, 0.15);
  color: #fff;
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 1rem auto;
  padding: 1rem;
  width: 100%;
  max-width: 24rem;
  text-align: center;
  background: rgba(0, 191, 255, 0.08);
  border-color: rgba(0, 191, 255, 0.3);
  animation: fadeIn 0.3s ease;
}
.status-message.code-status {
  margin-bottom: 1rem;
}

.status-error {
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 191, 255, 0.15);
  color: #fff;
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 1rem auto;
  padding: 1rem;
  width: 100%;
  max-width: 24rem;
  text-align: center;
  background: rgba(240, 59, 99, 0.08);
  border-color: rgba(240, 59, 99, 0.4);
  color: #F03b63;
}

.status-success {
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 191, 255, 0.15);
  color: #fff;
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 1rem auto;
  padding: 1rem;
  width: 100%;
  max-width: 24rem;
  text-align: center;
  background: rgba(40, 167, 69, 0.1);
  border-color: rgba(40, 167, 69, 0.4);
  color: #4dc964;
}

.status-link {
  color: #00bfff;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.status-link:hover {
  color: #0099cc;
}

.landing-footer {
  margin-top: 2.5rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.landing-footer span {
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1024px) {
  .landing-footer span {
    font-size: 0.75rem;
    margin: 0 auto;
  }
}

.floating-back {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 9999;
  background: rgba(10, 14, 39, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  padding: 0.75rem 1.25rem;
  border-radius: 1rem;
  color: #fff;
  text-decoration: none;
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.floating-back:hover {
  background: rgba(30, 41, 59, 0.95);
  border-color: rgba(0, 191, 255, 0.15);
  transform: translateY(-2px);
  color: #00bfff;
}
@media (max-width: 768px) {
  .floating-back {
    left: 50%;
    transform: translateX(-50%);
    bottom: 1.25rem;
    width: max-content;
  }
  .floating-back:hover {
    transform: translateX(-50%) translateY(-2px);
  }
}

.cta-section {
  text-align: center;
  padding-top: 0.5rem;
}

.cta-note {
  font-family: "Overpass Regular", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin: 1rem 0 0 0;
}
.cta-note a {
  color: #00bfff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.cta-note a:hover {
  color: #0099cc;
  text-decoration: underline;
}

/*# sourceMappingURL=base.css.map */
