/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  background: linear-gradient(to bottom right, #003555, #005f88);
  color: white;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.content {
  max-width: 500px;
}

h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffd25f;
}

p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.email-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.email-box input {
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
}

.email-box button {
  padding: 12px;
  background-color: #ffd25f;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  color: #003555;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.email-box button:hover {
  background-color: #f2c645;
}
