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

body {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  text-align: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('https://www.shutterstock.com/image-vector/gasoline-car-vs-electric-technology-260nw-2488942607.jpg') no-repeat center/cover;
  overflow: hidden;
}

.container {
  max-width: 500px;
  animation: fadeIn 2s ease-in-out;
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

form {
  display: flex;
  justify-content: center;
  align-items: center;
}

input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 25px 0 0 25px;
  outline: none;
  width: 70%;
  font-size: 1rem;
}

button {
  padding: 10px 20px;
  border: none;
  background-color: #ff9800;
  color: #fff;
  font-size: 1rem;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #e68900;
}

.footer {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}