@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #0d324d, #7f5a83);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 20px;
}

.logo {
  font-size: 2rem;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

p {
  margin-bottom: 30px;
  color: #f0f0f0;
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

#countdown div {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#countdown span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
}

#countdown small {
  font-size: 0.8rem;
  opacity: 0.8;
}

form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

input {
  padding: 10px;
  border-radius: 5px;
  border: none;
  outline: none;
  width: 60%;
}

button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: #ffb400;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #ffd95a;
}

footer {
  position: absolute;
  bottom: 10px;
  font-size: 0.9rem;
  color: #ddd;
}
