html,
body {
  width: 100%;
  /* height: 100%; */
}
body {
  font-family: "Montserrat", sans-serif;
  font-size: 100%;
  background-color: #f8f8f8;
}

a {
  color: #415e7d;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: black;
}

.width-70p{
  width: 70%;
}
.width-30p{
  width: 30%;
}

.elem-resp {
  position: relative;
  max-width: 600px;
  margin: auto;
}

.conteudo {
  margin-top: 50px;
  margin-bottom: 50px;
}

/*FORMS*/
.input-erro {
  background-color: #f1c6bf;
}
.cont-input {
  position: relative;
}

.cont-erro {
  position: absolute;
  background-color: tomato;
  color: white;
  padding: 0.3em;
  border-radius: 3px;
  top: 0;
  transform: translateY(-100%);
  font-size: 0.8em;
}

.cont-erro::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: -5px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid tomato;
}
input {
  transition: all 0.2s ease-in-out;
}
button {
  padding: 0.3em;
  text-transform: uppercase;
  border-radius: 100px;
  margin: 0 auto;
  background-color: #6889ad;
  border: 2px solid #6889ad;
  color: white;
  min-width: 70px;
  transition: all 0.2s ease-in-out;
}
button:hover {
  color: #6889ad;
  cursor: pointer;
  background-color: white;
}
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
button:hover:disabled {
  background-color: #6889ad;
  color: white;
}
button.color-green {
    background-color: green;
}
button.color-green:hover {
    background-color: white;
    color: green;
    border-color: green;
}


button .content-original {
  display: none;
}



/*MODAL*/
.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(255,255,255,0.9);
  background-image: linear-gradient(45deg, #20CC95, #B147C6);
  top: 0;
  left: 0;
}

.modal > div {
  width: 400px;
  background-color: #FFF;
  margin: 15% auto 0 auto;
  padding: 2em;
  box-sizing: border-box;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
  border-radius: 3px;
}

.modal p.tit {
  font-weight: bold;
  margin-bottom: 1em;
}

.modal li {
  padding: 0.9em 1.5em;
  margin-bottom: 0.5em;
  background-color: #eaf0f7;
  border-radius: 50px;
  cursor: pointer;
  transition: all ease 0.2s;
}
.modal li:hover {
  background-color: #415e7d;
  color: #FFFFFF;
}

@media (max-width: 650px) {
  .elem-resp {
      width: 90%;
  }
}
@media (max-width: 960px) {
    .width-70p,
    .width-30p{
      width: unset;
    }    

}
@media (max-width: 450px) {
  .modal > div {
    width: 95%;
    margin-top: 50%;
  }
}

