body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: url('Phoenix_10_a_mystical_and_enchanting_dark_magical_spiritual_ba_0.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #f9f9f9;
  text-align: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.logo {
  width: 180px;
  margin-bottom: 20px;
}

.content h1 {
  color: #fdf5e6;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.content p {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.6;
  color: #ffffff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

input {
  width: 250px;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.9);
  font-size: 1rem;
}

button {
  padding: 10px 30px;
  background-color: #d4af37;
  color: #000;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

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

.note {
  font-size: 0.9rem;
  color: #f8e8b5;
  max-width: 500px;
  margin-top: 20px;
}

footer {
  margin-top: 25px;
  color: #f9f9f9;
  font-style: italic;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .content h1 {
    font-size: 1.5rem;
  }
  input {
    width: 200px;
  }
}
