:root {
  --brand: #f26522;
  --brand-dark: #d84e0f;
  --ink: #211a16;
  --ink-soft: #6b5f58;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf9f7;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.card {
  width: 100%;
  max-width: 420px;
  margin: 24px;
  padding: 32px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.logo {
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 24px;
}

h1 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.lede {
  color: var(--ink-soft);
  margin: 0 0 24px;
}

.countries {
  list-style: none;
  margin: 0;
  padding: 0;
}

.country {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 8px;
  border-radius: 12px;
  background: #f5f3f1;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.country:hover {
  background: #efece9;
}

.badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand-dark);
  background: #fde3d3;
  padding: 2px 8px;
  border-radius: 999px;
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 6px;
}

input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d6d0cb;
  border-radius: 10px;
  font-size: 1rem;
  margin-bottom: 16px;
}

button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background: var(--brand-dark);
}

.error {
  color: #b91c1c;
  font-size: 0.875rem;
  margin-top: 12px;
}

.change-country {
  display: inline-block;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 0.875rem;
}
