* {
  box-sizing: border-box;
}

:root {
  --bg: #f4f7fb;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #101828;
  --muted: #667085;
  --border: rgba(16, 24, 40, 0.08);
  --primary: #2f6df6;
  --primary-2: #5a8cff;
  --primary-soft: rgba(47, 109, 246, 0.10);
  --success: #2563eb;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
  --radius-xl: 28px;
  --radius-lg: 18px;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(90, 140, 255, 0.12), transparent 26%),
    radial-gradient(circle at bottom right, rgba(47, 109, 246, 0.08), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
}

body {
  position: relative;
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 560px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(14px);
}

.topbar {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(47, 109, 246, 0.12), rgba(47, 109, 246, 0.05));
  border: 1px solid rgba(47, 109, 246, 0.10);
  display: grid;
  place-items: center;
}

.shield {
  width: 28px;
  height: 32px;
  background: linear-gradient(180deg, #76a1ff 0%, #2f6df6 100%);
  clip-path: polygon(50% 0%, 92% 14%, 92% 58%, 50% 100%, 8% 58%, 8% 14%);
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.subtitle {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.table-wrap {
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-strong);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 14px 16px;
  font-size: 13px;
}

.info-table th {
  color: var(--muted);
  font-weight: 600;
  background: #f9fbff;
}

.info-table td {
  border-top: 1px solid var(--border);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--success);
  font-weight: 700;
  white-space: nowrap;
}

.form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 13px;
  font-weight: 600;
  color: #344054;
}

.field input {
  width: 100%;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  border-radius: 16px;
  padding: 16px 16px;
  font: inherit;
  outline: none;
  transition: .2s ease;
}

.field input::placeholder {
  color: #98a2b3;
}

.field input:focus {
  border-color: rgba(47, 109, 246, 0.45);
  box-shadow: 0 0 0 4px rgba(47, 109, 246, 0.10);
}

.btn {
  margin-top: 4px;
  border: none;
  cursor: pointer;
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, var(--primary-2), var(--primary));
  box-shadow: 0 16px 30px rgba(47, 109, 246, 0.18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(47, 109, 246, 0.22);
}

.alert {
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
}

.alert.error {
  background: #fff2f2;
  color: #b42318;
  border: 1px solid #fecdca;
}

.bottom-note {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #2f6df6;
  box-shadow: 0 0 14px rgba(47, 109, 246, 0.35);
}

.bg-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(54px);
  pointer-events: none;
}

.bg-shape-1 {
  width: 240px;
  height: 240px;
  top: -50px;
  left: -40px;
  background: rgba(90, 140, 255, 0.18);
}

.bg-shape-2 {
  width: 200px;
  height: 200px;
  right: -20px;
  bottom: 0;
  background: rgba(47, 109, 246, 0.12);
}

@media (max-width: 580px) {
  .page {
    padding: 16px;
  }

  .card {
    padding: 22px 18px;
    border-radius: 24px;
  }

  h1 {
    font-size: 27px;
  }

  .info-table th,
  .info-table td {
    padding: 12px 10px;
    font-size: 12px;
  }
}

.helper-text {
  margin: 12px 2px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
