#woop-lottery-form {
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 10px;
}

#woop-lottery-form div {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  justify-content: space-between;
}

#woop-lottery-form label {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
  flex: 1;
}

#woop-lottery-form label:first-child {
  margin-right: 10px;
}

#woop-lottery-form input[type="text"],
#woop-lottery-form input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border 0.2s ease;
}

#woop-lottery-form input:focus {
  border-color: #0073aa;
  outline: none;
}

#woop-lottery-form button {
  padding: 10px 25px 10px 25px;
  background-color: #00c0f3;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  transition: background-color 0.2s ease;
}

#woop-lottery-form button:hover {
    color: #fff;
    background-color: #00a1cc;
}

#woop-lottery-form p {
  font-size: 14px;
  color: #666;
  margin-top: 15px;
}

#woop-lottery-form p[style*="color: red"] {
  margin-top: 10px;
  font-weight: bold;
}

.form-error {
	color: red;
	margin-bottom: 2em;
	background: #fff;
    border-radius: 6px;
    padding: 10px;
}


footer#colophon {
    display: none;
}