/**
 * ===================================================
 * © 2025 YUYAY Ltda. - yuyay.fin.ec
 * Sistema: Pagína Web
 * Versión: 2.5
 * Desarrollador: [Leonardo Verdugo Crespo - Sistemas]
 * Última modificación: 24/06/2024
 * ===================================================
 */
* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
/*CONTENEDOR QUE ABARCA TODAS LAS TARJETAS*/
body {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}

.contenedor-principal {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 2rem;
    margin-top: 60px;
}

.tarjetas-flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;

}

/* Solo los títulos dentro del formulario en blanco */
.formulario-card h1,label {
  color: white;
  font-weight: bold;
  
}

/*Estilo y animació de la tarjeta del Simulador*/

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row label {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  margin-top: 0px;
}

.formulario-card input,
.formulario-card select {
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
}

.formulario-card button {
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  border: none;
  background-color: #4998c5;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.formulario-card button:hover {
  background-color: #8a8b8b;
}


/* Animación de entrada */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.9s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

