/* [project]/app/(auth)/login/login.css [app-client] (css) */
@property --orbit-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

:root, [data-theme="dark"] {
  --lp-primary: #00ff9d;
  --lp-primary-hover: #00cc7d;
  --lp-primary-alpha: rgba(0, 255, 157, .1);
  --lp-primary-glow: rgba(0, 255, 157, .25);
  --lp-accent: #00f5ff;
  --lp-bg: #020407;
  --lp-left-bg: #020407;
  --lp-card: #0d1117;
  --lp-card-border: rgba(255, 255, 255, .08);
  --lp-input: #060c12;
  --lp-input-border: rgba(255, 255, 255, .12);
  --lp-text: #f0f0f5;
  --lp-text-secondary: #8b8fa8;
  --lp-text-muted: #4a5270;
  --lp-border: rgba(255, 255, 255, .08);
  --lp-shadow-card: 0 32px 64px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .05);
  --lp-shadow-primary: 0 8px 32px var(--lp-primary-glow);
}

[data-theme="light"] {
  --lp-primary: #00b870;
  --lp-primary-hover: #009a5e;
  --lp-primary-alpha: rgba(0, 184, 112, .08);
  --lp-primary-glow: rgba(0, 184, 112, .2);
  --lp-accent: #0095a8;
  --lp-bg: #f0f4f8;
  --lp-left-bg: #0a1520;
  --lp-card: #fff;
  --lp-card-border: rgba(0, 0, 0, .07);
  --lp-input: #f4f7fb;
  --lp-input-border: rgba(0, 0, 0, .1);
  --lp-text: #0f172a;
  --lp-text-secondary: #475569;
  --lp-text-muted: #94a3b8;
  --lp-border: rgba(0, 0, 0, .08);
  --lp-shadow-card: 0 24px 48px rgba(0, 0, 0, .1), 0 0 0 1px rgba(0, 184, 112, .08);
  --lp-shadow-primary: 0 8px 24px var(--lp-primary-glow);
}

*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.login-root {
  background: var(--lp-bg);
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  display: grid;
  position: relative;
}

.login-noise-overlay {
  pointer-events: none;
  z-index: 100;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.ls-theme-toggle {
  background: var(--lp-card);
  border: 1px solid var(--lp-card-border);
  cursor: pointer;
  z-index: 200;
  width: 44px;
  height: 44px;
  color: var(--lp-primary);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  display: flex;
  position: fixed;
  top: 20px;
  right: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
}

.ls-theme-toggle:hover {
  border-color: var(--lp-primary);
  box-shadow: var(--lp-shadow-primary);
  transform: scale(1.1)rotate(12deg);
}

.login-panel-left {
  align-items: stretch;
  display: flex;
  position: relative;
  overflow: hidden;
}

.login-panel-left__aurora {
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.aurora-blob {
  will-change: transform;
  border-radius: 50%;
  position: absolute;
}

.aurora-blob--1 {
  background: radial-gradient(circle at 40% 40%, rgba(0, 255, 157, .4) 0%, rgba(0, 255, 157, .1) 40%, rgba(0, 0, 0, 0) 70%);
  width: 70%;
  height: 60%;
  animation: 14s ease-in-out infinite auroraMove1;
  top: -10%;
  left: -15%;
}

.aurora-blob--2 {
  background: radial-gradient(circle at 60% 60%, rgba(0, 245, 255, .35) 0%, rgba(0, 245, 255, .08) 40%, rgba(0, 0, 0, 0) 70%);
  width: 55%;
  height: 55%;
  animation: 18s ease-in-out infinite auroraMove2;
  bottom: -10%;
  right: -10%;
}

.aurora-blob--3 {
  background: radial-gradient(circle, rgba(0, 255, 157, .25) 0%, rgba(0, 245, 255, .1) 45%, rgba(0, 0, 0, 0) 70%);
  width: 50%;
  height: 50%;
  animation: 22s ease-in-out infinite auroraMove3;
  top: 30%;
  left: 25%;
}

.aurora-blob--4 {
  background: radial-gradient(circle, rgba(0, 204, 125, .28) 0%, rgba(0, 255, 157, .06) 50%, rgba(0, 0, 0, 0) 70%);
  width: 40%;
  height: 45%;
  animation: 16s ease-in-out infinite auroraMove4;
  bottom: 5%;
  left: 10%;
}

@keyframes auroraMove1 {
  0% {
    transform: translate(0)scale(1)rotate(0);
  }

  25% {
    transform: translate(15%, 10%)scale(1.15)rotate(8deg);
  }

  50% {
    transform: translate(5%, 25%)scale(.9)rotate(-5deg);
  }

  75% {
    transform: translate(-10%, 15%)scale(1.1)rotate(12deg);
  }

  100% {
    transform: translate(0)scale(1)rotate(0);
  }
}

@keyframes auroraMove2 {
  0% {
    transform: translate(0)scale(1)rotate(0);
  }

  30% {
    transform: translate(-20%, -15%)scale(1.2)rotate(-10deg);
  }

  60% {
    transform: translate(10%, -25%)scale(.85)rotate(6deg);
  }

  100% {
    transform: translate(0)scale(1)rotate(0);
  }
}

@keyframes auroraMove3 {
  0% {
    transform: translate(0)scale(1)rotate(0);
  }

  20% {
    transform: translate(-15%, 20%)scale(1.25)rotate(15deg);
  }

  40% {
    transform: translate(20%, 10%)scale(.8)rotate(-8deg);
  }

  60% {
    transform: translate(10%, -20%)scale(1.15)rotate(10deg);
  }

  80% {
    transform: translate(-20%, -10%)scale(.9)rotate(-12deg);
  }

  100% {
    transform: translate(0)scale(1)rotate(0);
  }
}

@keyframes auroraMove4 {
  0% {
    transform: translate(0)scale(1)rotate(0);
  }

  35% {
    transform: translate(25%, -20%)scale(1.3)rotate(-15deg);
  }

  65% {
    transform: translate(-15%, 15%)scale(.85)rotate(8deg);
  }

  100% {
    transform: translate(0)scale(1)rotate(0);
  }
}

.login-panel-left__noise {
  opacity: .035;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.login-panel-left__inner {
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 60px 56px;
  display: flex;
  position: relative;
}

.login-panel-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  width: 100%;
  display: flex;
}

.login-brand__logo-wrap {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: 5s ease-in-out infinite logoFloat;
  display: flex;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0)scale(1);
  }

  50% {
    transform: translateY(-10px)scale(1.02);
  }
}

.login-brand__tagline {
  letter-spacing: .06em;
  color: rgba(0, 255, 157, .55);
  text-transform: uppercase;
  font-family: JetBrains Mono, monospace;
  font-size: 13px;
  font-weight: 500;
}

.login-panel-right {
  z-index: 1;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 48px 40px;
  display: flex;
  position: relative;
}

.login-panel-right:before {
  content: "";
  opacity: .03;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.login-card-wrapper {
  z-index: 1;
  width: 100%;
  max-width: 430px;
  position: relative;
}

.login-card-wrapper:before {
  content: "";
  background: conic-gradient(from var(--orbit-angle) at 50% 50%, transparent 0deg, rgba(0, 255, 157, .05) 12deg, rgba(0, 255, 157, .3) 30deg, rgba(0, 255, 157, .7) 50deg, #00ff9d 62deg, #80ffd0 68deg, #00ff9d 74deg, rgba(0, 255, 157, .7) 84deg, rgba(0, 255, 157, .25) 100deg, rgba(0, 255, 157, .04) 118deg, transparent 132deg);
  z-index: 0;
  pointer-events: none;
  border-radius: 27px;
  animation: 8s linear infinite orbit-beam;
  position: absolute;
  top: -3px;
  bottom: -3px;
  left: -3px;
  right: -3px;
}

.login-card-wrapper:after {
  content: "";
  background: conic-gradient(from var(--orbit-angle) at 50% 50%, transparent 0deg, rgba(0, 255, 157, .35) 48deg, #80ffd0 64deg, rgba(0, 255, 157, .35) 80deg, transparent 94deg);
  z-index: 0;
  pointer-events: none;
  border-radius: 26px;
  animation: 8s linear infinite orbit-beam;
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
}

@keyframes orbit-beam {
  from {
    --orbit-angle: 0deg;
  }

  to {
    --orbit-angle: 360deg;
  }
}

.login-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-card-border);
  width: 100%;
  box-shadow: var(--lp-shadow-card);
  z-index: 1;
  border-radius: 24px;
  animation: .5s cubic-bezier(.16, 1, .3, 1) cardEnter;
  position: relative;
  overflow: hidden;
}

@keyframes cardEnter {
  from {
    opacity: 0;
    transform: translateY(20px)scale(.97);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

.login-card__brand {
  border-bottom: 1px solid var(--lp-border);
  justify-content: center;
  align-items: center;
  min-height: 72px;
  padding: 24px 36px 20px;
  display: flex;
}

.login-card__body {
  padding: 28px 36px 24px;
}

.login-card__header {
  margin-bottom: 22px;
}

.login-title {
  color: var(--lp-text);
  letter-spacing: -.5px;
  margin-bottom: 5px;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
}

.title-accent {
  color: var(--lp-primary);
}

.login-subtitle {
  color: var(--lp-text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.login-card__footer {
  border-top: 1px solid var(--lp-border);
  color: var(--lp-text-muted);
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-size: 11.5px;
  display: flex;
}

.login-card__footer-sep {
  opacity: .4;
}

.login-alert {
  border-radius: 11px;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  padding: 12px 14px;
  font-size: 13.5px;
  line-height: 1.5;
  animation: .3s cubic-bezier(.16, 1, .3, 1) slideDown;
  display: flex;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-alert-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.login-alert-error {
  color: #fca5a5;
  background: rgba(239, 68, 68, .1);
  border: 1px solid rgba(239, 68, 68, .2);
}

.login-alert-error .login-alert-icon {
  stroke: #ef4444;
}

.login-alert-info {
  color: #93c5fd;
  background: rgba(59, 130, 246, .1);
  border: 1px solid rgba(59, 130, 246, .2);
}

.login-alert-info .login-alert-icon {
  stroke: #3b82f6;
}

[data-theme="light"] .login-alert-error {
  color: #dc2626;
  background: rgba(239, 68, 68, .05);
}

[data-theme="light"] .login-alert-info {
  color: #2563eb;
  background: rgba(59, 130, 246, .05);
}

.ls-form-group {
  margin-bottom: 16px;
}

.ls-form-label {
  color: var(--lp-text);
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  display: block;
}

.ls-form-control {
  border: 1.5px solid var(--lp-input-border);
  background: var(--lp-input);
  width: 100%;
  color: var(--lp-text);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color .15s, box-shadow .15s, background .15s;
}

.ls-form-control::placeholder {
  color: var(--lp-text-muted);
}

.ls-form-control:hover {
  border-color: rgba(255, 255, 255, .2);
}

[data-theme="light"] .ls-form-control:hover {
  border-color: rgba(0, 0, 0, .18);
}

.ls-form-control:focus {
  border-color: var(--lp-primary);
  background: var(--lp-card);
  box-shadow: 0 0 0 3px var(--lp-primary-alpha);
  outline: none;
}

.ls-form-control-code {
  text-align: center;
  letter-spacing: 12px;
  padding: 17px 8px;
  font-family: JetBrains Mono, SF Mono, monospace;
  font-size: 30px;
  font-weight: 700;
}

.ls-form-control-code:focus {
  letter-spacing: 14px;
}

.ls-form-helper {
  color: var(--lp-text-muted);
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.4;
  display: block;
}

.ls-password-wrapper {
  position: relative;
}

.ls-password-wrapper .ls-form-control {
  padding-right: 46px;
}

.ls-password-toggle {
  width: 32px;
  height: 32px;
  color: var(--lp-text-muted);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  transition: color .15s, background .15s;
  display: flex;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.ls-password-toggle:hover {
  background: var(--lp-primary-alpha);
  color: var(--lp-primary);
}

.ls-password-toggle svg {
  width: 18px;
  height: 18px;
}

.ls-form-options {
  justify-content: flex-end;
  margin-bottom: 18px;
  display: flex;
}

.ls-btn-primary {
  background: var(--lp-primary);
  color: #020407;
  cursor: pointer;
  letter-spacing: -.2px;
  border: none;
  border-radius: 11px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  padding: 0 20px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  transition: transform .15s, box-shadow .15s, opacity .15s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.ls-btn-primary:before {
  content: "";
  background: linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, .18), rgba(0, 0, 0, 0));
  transition: transform .5s;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateX(-100%);
}

.ls-btn-primary:hover:not(:disabled):before {
  transform: translateX(100%);
}

.ls-btn-primary:hover:not(:disabled) {
  box-shadow: var(--lp-shadow-primary);
  transform: translateY(-2px);
}

.ls-btn-primary:active:not(:disabled) {
  transform: translateY(0);
}

.ls-btn-primary:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.ls-btn-secondary {
  height: 48px;
  color: var(--lp-text);
  border: 1.5px solid var(--lp-border);
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border-radius: 11px;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  transition: background .15s, border-color .15s;
  display: flex;
}

.ls-btn-secondary:hover:not(:disabled) {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .15);
}

[data-theme="light"] .ls-btn-secondary:hover:not(:disabled) {
  background: rgba(0, 0, 0, .04);
  border-color: rgba(0, 0, 0, .15);
}

.ls-btn-secondary:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.ls-link-btn {
  color: var(--lp-primary);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  transition: color .15s;
}

.ls-link-btn:hover {
  color: var(--lp-primary-hover);
  text-decoration: underline;
}

.ls-spinner {
  border: 2px solid rgba(0, 0, 0, 0);
  border-top-color: currentColor;
  border-radius: 50%;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  animation: .55s linear infinite spin;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.ls-2fa-user {
  background: var(--lp-primary-alpha);
  border: 1px solid rgba(0, 255, 157, .18);
  border-radius: 14px;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding: 14px 16px;
  display: flex;
}

.ls-2fa-avatar {
  background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-hover) 100%);
  width: 48px;
  height: 48px;
  box-shadow: 0 4px 12px var(--lp-primary-glow);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.ls-2fa-avatar svg {
  color: #020407;
  stroke-width: 2.5px;
  width: 22px;
  height: 22px;
}

.ls-2fa-info {
  flex-direction: column;
  flex: 1;
  gap: 4px;
  min-width: 0;
  display: flex;
}

.ls-2fa-email {
  color: var(--lp-text);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
}

.ls-2fa-hint {
  color: var(--lp-primary);
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
}

.ls-2fa-hint svg {
  stroke-width: 2.5px;
  width: 12px;
  height: 12px;
}

.ls-2fa-loading {
  background: var(--lp-primary-alpha);
  color: var(--lp-primary);
  border: 1px solid rgba(0, 255, 157, .18);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 13px 18px;
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
}

.ls-2fa-actions {
  grid-template-columns: auto 1fr;
  gap: 10px;
  display: grid;
}

.ls-2fa-help {
  border-top: 1px solid var(--lp-border);
  text-align: center;
  margin-top: 20px;
  padding-top: 16px;
}

.ls-2fa-help p {
  color: var(--lp-text-secondary);
  margin-bottom: 8px;
  font-size: 13px;
}

.ls-reset-info {
  flex-direction: column;
  gap: 20px;
  margin-bottom: 22px;
  display: flex;
}

.ls-reset-icon {
  justify-content: center;
  display: flex;
}

.ls-reset-icon svg {
  width: 48px;
  height: 48px;
  color: var(--lp-primary);
  opacity: .75;
}

.ls-reset-steps {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.ls-reset-step {
  background: var(--lp-input);
  border: 1px solid var(--lp-input-border);
  border-radius: 12px;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  display: flex;
}

.ls-reset-step__num {
  background: var(--lp-primary);
  color: #020407;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  font-size: 12px;
  font-weight: 800;
  display: flex;
}

.ls-reset-step strong {
  color: var(--lp-text);
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 700;
  display: block;
}

.ls-reset-step p {
  color: var(--lp-text-secondary);
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
}

.ls-reset-actions {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

@media (max-width: 900px) {
  .login-root {
    grid-template-columns: 1fr;
  }

  .login-panel-left {
    display: none;
  }

  .login-panel-right {
    padding: 24px 20px;
  }

  .login-card__body {
    padding: 22px 24px 20px;
  }

  .login-card__brand {
    padding: 20px 24px 16px;
  }

  .login-card__footer {
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .login-title {
    font-size: 20px;
  }

  .ls-form-control {
    font-size: 16px;
  }

  .ls-form-control-code {
    letter-spacing: 10px;
    font-size: 24px;
  }

  .ls-form-control-code:focus {
    letter-spacing: 12px;
  }

  .ls-2fa-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, :before, :after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/*# sourceMappingURL=app_%28auth%29_login_login_dc874ed1.css.map*/