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

/* Layout generale */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #ffffff;
  color: #111111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px;
  text-align: center;
}

/* Titolo principale */
h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

/* Sottotitolo / descrizione */
p {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.5;
}

/* Form */
form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Input email */
input[type="email"] {
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 260px;
  outline: none;
}

input[type="email"]:focus {
  border-color: #111;
}

/* Bottone */
button {
  padding: 12px 18px;
  font-size: 16px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  opacity: 0.85;
}
