/* styles.css */
body {
  background-image: linear-gradient(rgba(255, 255, 255, 0.229), rgba(0, 0, 0, 0.316)), url('bg.png');
  background-size: cover;
  background-position: center;
}


.card {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0.9;
  animation: fadeIn 1s ease-in-out forwards;
}

.formStep {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #f4f4f4;
}

label {
  color: #f4f4f4;
}

#successMessage {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#successMessage h4,
#successMessage p {
  color: rgba(255, 255, 255, 0.8);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}