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

:root {
  --green: #718c69;
  --bg: #faf7f1;
  --text: #3a3a3a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  max-width: 480px;
  padding: 2rem;
}

.logo {
  width: 160px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: #555;
}

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

.signup-form input {
  padding: 0.75rem 1rem;
  border: 2px solid var(--green);
  border-radius: 10px;
  font-size: 1rem;
}

.signup-form button {
  background-color: var(--green);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.signup-form button:hover {
  background-color: #5f795b;
}

footer {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #777;
}
