body {
  font-family: Verdana, sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

.form-container {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 80%;
  width: 100%;
}

.step {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 1s ease-in-out, height 0s ease-in-out 1s; /* La altura se oculta inmediatamente, y la opacidad se transiciona */
}

.step.active {
  opacity: 1;
  height: auto; /* Recupera su altura normal */
  transition: opacity 1s ease-in-out, height 0s ease-in-out 0s; /* La altura se restaura inmediatamente */
}

.logoimg
{
  width: 12%;
  padding-bottom: 30px;
  max-width: 100%;
  height: auto;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

h2 {
  font-size: 1.5em;
  color: #1a8981;
  font-weight: bold;
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 1em;
  font-size: 2em;
  font-weight: 600;
  color: #1a8981;
}

p {
  display: block;
  margin-bottom: 1em;
  font-size: 2em;
  font-weight: 600;
  color: #1a8981;
}

input {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 1.1em; /* Aumentamos el tamaño de los inputs */
}

button {
  background-color: #1a8981;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: larger;
}

button:hover {
  background-color: #5bcdb6;
}

.option-btn {
  display: block;
  width: 100%;
  padding: 15px;
  margin-bottom: 10px;
  background-color: #1a8981;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}

.option-btn:hover {
  background-color: #5bcdb6;
}

.progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #e0e0e0;
}

.progress-bar {
  height: 10px;
  width: 0%;
  background-color: #1a8981;
  transition: width 0.5s ease;
}

button:disabled {
  background-color: #cdcdcd;
  cursor: not-allowed;
}

.spinner {
  animation: spin 1s infinite linear;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 600px) {
  .form-container {
    padding: 15px;
  }

  .logoimg
  {
    width: 35%;
  }
}
