* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(to right, #2c3e50, #4ca1af);
}

.container {
  width: 90%;
  max-width: 450px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.logo {
  width: 200px;
  margin-bottom: 10px;
}

h1 {
  font-size: 24px;
  color: #333;
}

p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.steps {
  margin-bottom: 20px;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f7f7f7;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.step span {
  width: 25px;
  height: 25px;
  background: #2ecc71;
  color: white;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

/* Stylish Input Fields */
form {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

input {
  padding: 12px;
  margin-bottom: 12px;
  border: 2px solid #2ecc71;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
  transition: 0.3s;
  outline: none;
}

input:focus {
  border-color: #27ae60;
  box-shadow: 0 0 8px rgba(39, 174, 96, 0.5);
}

button {
  background: #27ae60;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #219150;
}

/* Thank You Section */
.thank-you {
  padding: 15px;
  background: #f0f9f4;
  border: 1px solid #27ae60;
  border-radius: 5px;
  text-align: center;
}

.thank-you h2 {
  font-size: 22px;
  color: #27ae60;
}

.thank-you p {
  font-size: 14px;
  color: #333;
  margin-top: 5px;
}

/* Hide elements initially */
.hidden {
  display: none;
}

#hint{
  margin-bottom: 10px;
}

#step{
  margin: 0;
}