@font-face {
  font-family: "NB International Pro";
  src: url("/assets/Font/NB International Pro/NBInternationalProReg.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NB International Pro";
  src: url("/assets/Font/NB International Pro/NBInternationalProBol.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-blue: #2424fc;
  --primary-purple: #876cff;
  --accent-pink: #ff3e7f;
  --text-dark: #121416;
  --text-muted: #6c757d;
  --background: #f8f9fa;
  --card-background: #ffffff;
  --border-radius-lg: 16px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.08);
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "NB International Pro", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: radial-gradient(circle at top left, #f0f4ff, #ffffff 60%, #eef5ff);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
}

.header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  height: 56px;
  margin-bottom: 0.75rem;
}

.title {
  margin: 0;
  font-size: 1.9rem;
  letter-spacing: 0.02em;
}

.subtitle {
  margin-top: 0.5rem;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  max-width: 480px;
  width: 100%;
  background: linear-gradient(
      135deg,
      rgba(36, 36, 252, 0.04),
      rgba(135, 108, 255, 0.04)
    ),
    var(--card-background);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 2rem 1.75rem 2.25rem;
}

.card-title {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.card-text {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease,
    box-shadow 0.15s ease;
}

.btn.primary {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-purple)
  );
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(36, 36, 252, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(36, 36, 252, 0.4);
}

.btn.secondary {
  background-color: #ffffff;
  color: var(--primary-blue);
  border: 1px solid rgba(36, 36, 252, 0.25);
}

.btn.secondary:hover {
  background-color: rgba(36, 36, 252, 0.04);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.status-message {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  min-height: 1.2em;
}

.footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .page {
    padding: 3rem 2.5rem;
  }

  .header {
    margin-bottom: 2.5rem;
  }

  .card {
    padding: 2.25rem 2.25rem 2.5rem;
  }
}

