body {
  font-family: "Arial", sans-serif;
  background-color: #f0f8ff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

h2 {
  color: #ff6347;
  text-align: center;
}

form {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  animation: fadeIn 1s ease-in-out;
}

label {
  display: block;
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #333;
}

input[type=text], input[type=number], input[type=file] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 2px solid #ff6347;
  outline: none;
  font-size: 1em;
}

button {
  background-color: #ff6347;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-bottom: 20px;
}

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

#nextButton1, #passwordField, #nextButton2, #imageField, #submitButton {
  display: none;
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.small {
  font-size: 0.7em;
  color: lightgray;
}/*# sourceMappingURL=index.css.map */