:root {
  --cherry: #e11d48;
  --cherry-soft: #fb7185;
  --cherry-bg-soft: #fff1f2;
  --mint: #22c55e;
  --text-main: #1f2933;
  --text-muted: #6b7280;
  --border-soft: #fecdd3;
  --radius-lg: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: radial-gradient(circle at top left, #fee2e2 0, transparent 45%),
    radial-gradient(circle at bottom right, #ffe4e6 0, #ffffff 55%);
}

.wrapper {
  width: 100%;
  max-width: 430px;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  justify-content: center;
}

.logo-row img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-text-main {
  font-size: 18px;
  font-weight: 700;
  color: var(--cherry);
}

.logo-text-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: 0 14px 40px rgba(248, 113, 113, 0.25);
  padding: 22px 20px 20px;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle at center, #fecaca 0, #ffffff 70%);
  opacity: 0.7;
}

.card-header {
  position: relative;
  text-align: left;
  margin-bottom: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px dashed var(--cherry-soft);
  background: var(--cherry-bg-soft);
  font-size: 11px;
  color: var(--cherry);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--mint);
}

h1 {
  font-size: 19px;
  margin: 0 0 4px;
  color: var(--text-main);
}

.subtitle {
  font-size: 13px;
  color: var(--text-muted);
}

.field {
  margin-top: 14px;
  margin-bottom: 4px;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-main);
}

input {
  width: 100%;
  padding: 10px 11px;
  border-radius: 999px;
  border: 1px solid #fecdd3;
  background: #fff7f8;
  font-size: 14px;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease;
}

input::placeholder {
  color: #c4c4c4;
}

input:focus {
  background: #ffffff;
  border-color: var(--cherry-soft);
  box-shadow: 0 0 0 2px rgba(248, 113, 165, 0.35);
}

.helper {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.error {
  font-size: 12px;
  color: #dc2626;
  min-height: 16px;
  margin-top: 8px;
}

button {
  width: 100%;
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(
    135deg,
    var(--cherry) 0%,
    var(--cherry-soft) 50%,
    var(--mint) 100%
  );
  background-size: 160% 160%;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(248, 113, 165, 0.6);
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background-position 0.35s ease;
}

button:hover {
  transform: translateY(-1px);
  background-position: 20% 50%;
  box-shadow: 0 16px 34px rgba(248, 113, 165, 0.7);
}

button:active {
  transform: translateY(0);
  box-shadow: 0 10px 20px rgba(248, 113, 165, 0.65);
}

.footnote {
  margin-top: 14px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}
