.button {
  padding: 10px 30px;
  border: none;
  border-radius: 30px;
  background-color: var(--regular_blue);
  color: var(--white);
  -webkit-box-shadow: 7px 5px 15px -5px rgba(59, 137, 173, 0.87);
  box-shadow: 7px 5px 15px -5px rgba(59, 137, 173, 0.87);
}

.button:hover {
  box-shadow: none;
}

.divider {
  height: 4px;
  width: 50px;
  background: var(--regular_blue);
}

.contact-btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.img-timon {
  display: flex;
  justify-content: center;
}

.social-network-absolute {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.social-network-absolute a {
  margin-top: 4px;
}

.social-network-absolute img {
  width: 60px;
  padding: 4px;
  cursor: pointer;
}

/* Mensajes de formulario */
.input-error {
  outline: 1px solid red;
}
.input-valido {
  outline: 1px solid var(--green);
}

.mensajes-de-error {
  border: 1px solid red;
  padding: 1em;
  color: red;
  margin-top: 1em;
  text-align: center;
}

.enviado-correctamente {
  padding: 0.5em;
  background-color: #e67e2e;
  color: #fff;
  text-align: center;
  margin-top: 1em;
}
