/* Estilos para mensajes del formulario */
.form-message-container {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
}

.form-success-message {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.form-error-message {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.success-icon, .error-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.success-icon {
  color: #28a745;
}

.error-icon {
  color: #dc3545;
}

.form-message-container h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
}

.form-message-container p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
}

/* Estilo para el estado deshabilitado del botón */
button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed !important;
}

/* Estilo para los selects */
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem !important;
  cursor: pointer;
}

/* Animación para los mensajes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estilo para opciones placeholder */
select option[value=""][disabled] {
  color: #6b7280;
}