*/------------------------------------------------------------------ contact form ----------------------------------------------*/
/* contact form messages*/
#contactMsg {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	padding: 12px 20px;
	border-radius: 5px;
	font-size: 16px;
	color: #fff;
	text-align: center;
	background-color: rgba(40, 167, 69, 1);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	z-index: 9999;
	height: auto;
	overflow: hidden;
  opacity: 0;
}
  
#contactMsg.msg-error {
	background-color: rgba(130, 14, 25, 1);
  opacity: 0;
}
  
#msgSubmit {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background-color: rgba(40, 167, 69, 1); 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 1);
  z-index: 9999;
  opacity: 0;
}
  
#msgSubmit.msg-error {
  background-color: rgba(232, 24, 45, 1);
  opacity: 0; 
}

/* Estilos para el ícono giratorio de carga */
@keyframes spin {
  to {
      transform: rotate(360deg);
  }
}

.loading-icon-button {
  display: none;
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid transparent;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-container-button{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/*Suscribe form messages*/
 
#subscribeMsg {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background-color: rgba(40, 167, 69, 0.9);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  opacity: 0; 
}

#subscribeMsg.msg-error {
  background-color: rgba(220, 53, 69, 0.9); 
}

#subscribeMsg.msg-success {
  background-color: rgba(40, 167, 69, 0.9); 
}

#subscribeMsg.msg-info {
  background-color: rgba(52, 144, 220, 0.9); 
}

#recaptcha-container {
  margin: 0 auto;
  text-align: center; 
}
