body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background: url('../images/background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #f1f1f1;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
}

.content {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 40px;
  border-radius: 10px;
}

.title {
  font-size: 64px;
  font-weight: bold;
  color: gold;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 24px;
  color: #f9d976;
  margin-bottom: 15px;
}

.quote {
  font-size: 18px;
  margin-bottom: 25px;
}

.cta-button {
  text-decoration: none;
  background-color: gold;
  color: black;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
}
.form-container {
  width: 90%;
  max-width: 600px;
  margin: auto;
  padding: 30px;
  background-color: #111;
  color: white;
  border-radius: 8px;
  margin-top: 60px;
}

.step {
  display: none;
  flex-direction: column;
}

.step.active {
  display: flex;
}

input[type="text"], input[type="email"], input[type="password"], input[type="number"], input[type="file"] {
  margin: 10px 0;
  padding: 12px;
  font-size: 16px;
  width: 100%;
}

button {
  background-color: gold;
  border: none;
  padding: 12px;
  font-weight: bold;
  font-size: 16px;
  margin-top: 20px;
  border-radius: 5px;
  cursor: pointer;
}
