@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --forest: #1d3f2a;
  --forest-soft: #275a3c;
  --lilac: #6936b3;
  --lavender: #7e5bc7;
  --white: #ffffff;
  --gray: #e8e9ec;
  --ink: #111827;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(135deg, var(--forest), var(--lilac));
  color: var(--ink);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 500px;
  text-align: center;
}

.branding {
  color: var(--white);
  margin-bottom: 30px;
}

.logo {
  width: 90px;
  height: auto;
  margin-bottom: 12px;
}

.title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

.subtitle {
  font-size: 16px;
  opacity: 0.9;
}

.card {
  background: var(--white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  text-align: left;
}

.card h2 {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--forest);
}

.card p {
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  text-decoration: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 600;
  display: block;
  text-align: center;
}

.primary {
  background: var(--forest);
  color: var(--white);
}

.primary:hover {
  background: var(--forest-soft);
}

.secondary {
  border: 2px solid var(--lilac);
  color: var(--lilac);
  background: transparent;
}

.secondary:hover {
  background: var(--lavender);
  color: var(--white);
}

footer {
  margin-top: 30px;
  color: var(--white);
  font-size: 14px;
  opacity: 0.9;
}
