* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

.top-image {
  width: 120px;
  margin-bottom: 10px;
}

.container {
  background: linear-gradient(145deg, #b93dfb, #9334ff);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  width: 340px;
  color: #fff;
  position: relative;
}

.date-tag {
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  padding: 6px 16px;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 15px;
}

.container h2 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.highlight {
  color: #ffeb3b;
  font-weight: 700;
}

.form-box {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  color: #000;
}

.form-box label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-box input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  margin-bottom: 15px;
  outline: none;
  transition: border 0.3s;
}

.form-box input:focus {
  border-color: #ff3b5c;
}

.form-box button {
  background-color: #ff3b5c;
  color: #fff;
  border: none;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.form-box button:hover {
  background-color: #ff1e42;
}

.footer {
  text-align: center;
  font-size: 12px;
  color: #777;
  margin-top: 10px;
  max-width: 300px;
}