@charset "UTF-8";
#loginModal .modal-dialog {
  max-width: 420px;
}

.tcg-modal {
  position: relative;
  background: #16162a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem !important;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.tcg-modal__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: orb-drift 18s ease-in-out infinite alternate;
}
.tcg-modal__orb--1 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.18) 0%, transparent 70%);
  top: -80px;
  right: -60px;
  animation-duration: 16s;
}
.tcg-modal__orb--2 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
  bottom: -60px;
  left: -40px;
  animation-duration: 22s;
  animation-delay: -8s;
}
.tcg-modal__header {
  position: relative;
  z-index: 1;
  padding: 2rem 2rem 0;
  text-align: center;
}
.tcg-modal__eyebrow {
  display: inline-block;
  font-family: "Nunito", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FACC15;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
  margin-bottom: 0.75rem;
}
.tcg-modal__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: #e2e8f0;
  margin: 0 0 0.25rem;
  line-height: 1;
}
.tcg-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1;
  padding: 0;
}
.tcg-modal__close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
}
.tcg-modal__body {
  position: relative;
  z-index: 1;
  padding: 1.5rem 2rem 2rem;
}

@keyframes orb-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(12px, 16px) scale(1.08);
  }
}
.tcg-field {
  margin-bottom: 1.1rem;
}
.tcg-field__label {
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 0.4rem;
}
.tcg-field__wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.tcg-field__icon {
  position: absolute;
  left: 0.9rem;
  color: #94a3b8;
  font-size: 0.9rem;
  pointer-events: none;
  z-index: 2;
}
.tcg-field__input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.6rem;
  color: #e2e8f0;
  font-family: "Nunito", sans-serif;
  font-size: 0.93rem;
  padding: 0.65rem 2.6rem 0.65rem 2.6rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
}
.tcg-field__input::-moz-placeholder {
  color: rgba(148, 163, 184, 0.5);
}
.tcg-field__input::placeholder {
  color: rgba(148, 163, 184, 0.5);
}
.tcg-field__input:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(250, 204, 21, 0.45);
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.1);
}
.tcg-field__input.is-invalid {
  border-color: rgba(248, 113, 113, 0.5);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.1);
}
.tcg-field__toggle {
  position: absolute;
  right: 0.9rem;
  color: #94a3b8;
  cursor: pointer;
  font-size: 0.95rem;
  z-index: 2;
  transition: color 0.2s ease;
}
.tcg-field__toggle:hover {
  color: #FACC15;
}
.tcg-field__error {
  font-size: 0.78rem;
  color: #f87171;
  margin-top: 0.3rem;
  font-family: "Nunito", sans-serif;
}

.tcg-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
}

.tcg-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.tcg-check input {
  display: none;
}
.tcg-check__box {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.tcg-check__box::after {
  content: "✓";
  font-size: 0.65rem;
  color: #0f0f1a;
  opacity: 0;
  transition: opacity 0.2s ease;
}
input:checked + .tcg-check__box {
  background: #FACC15;
  border-color: #FACC15;
}
input:checked + .tcg-check__box::after {
  opacity: 1;
}
.tcg-check__label {
  font-family: "Nunito", sans-serif;
  font-size: 0.82rem;
  color: #94a3b8;
}

.tcg-forgot {
  font-family: "Nunito", sans-serif;
  font-size: 0.82rem;
  color: #FACC15;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.tcg-forgot:hover {
  opacity: 0.75;
  color: #FACC15;
}

.tcg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 0.6rem;
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.tcg-btn:hover {
  transform: translateY(-2px);
}
.tcg-btn:active {
  transform: translateY(0);
}
.tcg-btn--primary {
  background: #FACC15;
  color: #0f0f1a;
  box-shadow: 0 4px 20px rgba(250, 204, 21, 0.3);
  margin-bottom: 1rem;
}
.tcg-btn--primary:hover {
  box-shadow: 0 8px 28px rgba(250, 204, 21, 0.45);
}
.tcg-btn--google {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
}
.tcg-btn--google:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  color: #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.tcg-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
}
.tcg-divider::before, .tcg-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.tcg-divider span {
  font-family: "Nunito", sans-serif;
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.tcg-switch {
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-size: 0.82rem;
  color: #94a3b8;
  margin: 1rem 0 0;
}
.tcg-switch a {
  color: #FACC15;
  font-weight: 800;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.tcg-switch a:hover {
  opacity: 0.75;
}/*# sourceMappingURL=login.css.map */