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

html, body {
  height: 100%;
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #667eea, #764ba2);
  color: white;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.content {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  width: 100%;
}


.responsive-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
}

h1 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

p {
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input[type="email"] {
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

button {
  padding: 10px;
  border: none;
  background-color: #ffffff;
  color: #764ba2;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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