.required::after {
  content: " *";
  color: #fa896b;
  font-weight: bold;
}

.circulo {
  width: 100%;
  /* Tamaño del círculo */
  height: 30px;
  border-radius: 7px;
  /* Hace el div circular */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Evita que la imagen sobresalga */
  margin-right: 15px;
  /* Espacio entre el círculo y el texto */
}

.circulo img {
  width: 25px;
  /* Ajusta la imagen al círculo */
  height: auto;
  /* Mantiene la proporción */
}

.img-cuadrada {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}