/* ====== Estilos Globales ====== */

/* ====== Contenedor Principal ====== */

/* ====== Página de Verificación ====== */
.verification-page .avu-form-wrapper {
  max-width: 420px;
}

/* 🔹 Contador de expiración */
#countdown {
  font-size: 14px;
  color: red;
  font-weight: bold;
  margin-top: 10px;
}



label {
  font-size: 14px;
  /* Etiquetas más pequeñas */
  font-weight: 600;
}

/* ====== Inputs, selects y textarea más pequeños ====== */
input,
select,
textarea {
  width: 100%;
  max-width: 800px;
  padding: 8px;
  /* Reducimos el padding */
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  /* Fuente más pequeña */
}

/* ====== Ajuste de filas en dos columnas ====== */
.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

/* ====== Botón más compacto ====== */
.itinerary-btn {
  width: 100%;
  max-width: 350px;
  background: #007bff;
  color: white;
  padding: 10px;
  /* Reducimos el tamaño del botón */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  /* Fuente más pequeña */
  font-weight: bold;
  transition: background 0.3s ease;
}

.itinerary-btn:hover {
  background: #0056b3;
}

/* ====== Checkboxes más pequeños y en línea ====== */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 4px;
  /* Menos espacio entre el checkbox y el texto */
  font-size: 14px;
  /* Letra más pequeña */
}

.checkbox-group input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: #007bff;
}

/* ====== Comentarios más compactos ====== */
.comment-group textarea {
  resize: vertical;
  height: 60px;
  /* Menos alto */
}

.confirmacion-container {
  max-width: 600px;
  margin: auto;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  background: #ffffff;
  transition: all 0.3s ease-in-out;
  margin-top: 50px;
}

.confirmacion-container.success {
  border: 2px solid #4caf50;
  background: #e8f9e8;
}

.confirmacion-container.error {
  border: 2px solid #f44336;
  background: #fdecea;
}

.confirmacion-container .icon {
  font-size: 50px;
  margin-bottom: 10px;
}

.confirmacion-container h1 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.confirmacion-container p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

/*Pagina de confirmacion de pago*/
.confirmacion-container a {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: #007aff;
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
}

.confirmacion-container a:hover {
  background: #005ecb;
}

/* ====== Ajuste responsivo para móviles ====== */
@media (max-width: 768px) {
  .itinerary-container {
    width: 95%;
    padding: 20px;
    /* Menos padding */
  }

  .form-row {
    flex-direction: column;
  }

  input,
  select,
  textarea {
    font-size: 13px;
    /* Más pequeño en móviles */
    padding: 6px;
  }

  .itinerary-btn {
    font-size: 13px;
    padding: 8px;
  }
}



/**ally landing*/
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float-delayed {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.animate-float-delayed {
  animation: float-delayed 6s ease-in-out 2s infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}