* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background: #fff;
}
.menu-principal {
  display: flex;
  justify-content: space-between;
  color: #00ff0d;
  background-color: #000;
  padding: 24px;
}

nav ul li {
  text-align: center;
  list-style: none;
  display: inline-block;
  font-family: "Mulish", sans-serif;
}

li a {
  display: flex;
  flex-direction: row;
  text-align: none;
  text-decoration: none;
  color: #00ff0d;
  margin: 12px;
}
li a:hover {
  color: #fff;
}
h1 {
  color: #00ff0d;
  font-family: "Mulish", sans-serif;
}
img {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 150px;
  max-height: 150px;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 800wh;
  width: 90%;
  margin: auto;
  padding: 40px;
}
.caja-formulario {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 500px;
  border-radius: 10px;
  padding: 16px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.2) 0px 4px 6px -2px;
  -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.2) 0px 4px 6px -2px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.2) 0px 4px 6px -2px;
}
.formulario {
  display: grid;
  grid-template-columns: 1fr ifr;
  gap: 20px;
  padding: 12px;
}
.formulario__label {
  display: block;
  font-weight: 700;
  padding: 10px;
  cursor: pointer;
}

.formulario__input {
  width: 100%;
  background: #fff;
  border: 1px solid #a5a3a3;
  border-radius: 3px;
  height: 45px;
  line-height: 45px;
  padding: 0 40px 0 10px;
  transition: 0.3s ease all;
}
.formulario__input-error {
  margin: 16px;
  font-size: 12px;
}
.formulario__input:focus {
  border: 3px solid #00ff0d;
  outline: none;
  box-shadow: 3px opx 30px rgb(163, 163, 163, 0.4);
}
.btn {
  border-radius: 5px;
  color: #fff;
  background: #1a741e;
  border: none;
  margin: 10px;
  padding: 10px;
  margin-left: 98px;
  margin-right: 98px;
}
.btn:hover {
  background: #00ff0d;
  color: #000;
}
footer {
  display: flex;
  justify-content: center;
  flex-direction: row;
  color: #00ff0d;
  background-color: #000;
  padding: 16px;
  font-family: "Mulish", sans-serif;

}
.pie-de-pagina{
  display: inline;
}
.fab{
 padding:12px;
 font-size: 20px;


}
.fa-instagram{
  color:#ba3eda;
}
.fa-youtube{
  color:#da1414;
}
.fa-facebook-square{
  color:#1628c7;
}
.valido {
  color: green;
  font-weight: bold;
  text-align: center;
}

.invalido {
  color: red;
  font-weight: bold;
  text-align: center;
}
.hidden{
 visibility: hidden;
}
