* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #f5f7fa;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.container {
  text-align: center;
  padding: 2rem;
  max-width: 500px;
}
.logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: #004080;
  margin-bottom: 1rem;
}
h1 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
form {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
input[type="email"] {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 60%;
}
button {
  padding: 0.5rem 1rem;
  background-color: #004080;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.socials a {
  margin: 0 0.5rem;
  text-decoration: none;
  color: #004080;
  font-weight: 500;
}
footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #777;
}