@import url('https://fonts.googleapis.com/css2?family=Francois+One&display=swap');

* {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  background-color: #F7F6E7;
}

h1 {
  font-family: 'Francois One', sans-serif;
  text-align: center;
  padding: 0 0 70px 0;
  color: #5B44FB;
  font-size: 36px;
}

.container {
  height: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.boxFormulario {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #CCCCCC;
  height: auto;
  margin: 0 auto;
  width: 700px;
  padding: 50px 0px 0px 0px;
  border: none;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.boxFormulario h2 {
  font-family: 'Francois One', sans-serif;
  text-align: center;
  font-size: 34px;
  color: #5B44FB;
}

.boxFormulario span {
  font-family: 'Francois One', sans-serif;
  font-size: 26px;
  color: #3c3c3c;
  padding: 25px 0;
}

.boxFormulario > .btnVoltar {
  color: #fff;
  height: 50px;
  width: 35%;
  font-size: 24px;
  display: flex;
  font-family: 'Francois One', sans-serif;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #5B44FB;
  text-decoration: none;
  text-align: center;
  display: none;
  transition: 1s;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin: 50px 0;
}

.boxFormulario > .btnVoltar:hover {
  border: 2.5px #3c3c3c solid;
  background-color: transparent;
  border-radius: 5px;
  transition: 1s;
  color: #3c3c3c;
}

.ativo {
  background-color: #5B44FB;
}

.formulario {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  margin: 0 auto;
  height: auto;
}

.formulario label {
  font-family: 'Francois One', sans-serif;
  color: #707070;
  font-size: 26px;
  padding: 10px 0;
  text-align: center;
  margin-bottom: 5px;
  width: 90%;
}

.formulario input {
  height: 40px;
  text-align: center;
  width: 100%;
  border: none;
  border-radius: 5px;
  margin-bottom: 20px;
  font-family: 'Francois One', sans-serif;
  font-size: 18px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.formulario .iconIMG {
  height: auto;
  width: 60%;
  padding: 23px;
  transition: 1s;
  border: 3px #3c3c3c solid;
  cursor: pointer;
  border-radius: 10px;
  background-color: #5B44FB;
}

.formulario .iconIMG2 {
  height: auto;
  background-color: #5B44FB;
  width: 50%;
  padding: 23px;
  transition: 1s;
  border: 3px #3c3c3c solid;
  cursor: pointer;
  border-radius: 10px;
}

.cardIcon {
  display: flex;
  width: 80%;
  height: auto;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
}

.formulario .iconIMG:hover, .formulario .iconIMG2:hover {
  background-color: transparent;
  transition: 1s;
  border: 3px #000 solid;
  border-radius: 10px;
  padding: 35px;
}

.containerIcons {
  margin: 20px 0 -20px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}



.formulario input::placeholder {
  color: #C8C6C6;  
  text-align: center;
}

.formulario > .btn {
  height: 55px;
  width: 70%;
  font-size: 24px;
  border: none;
  border-radius: 5px;
  background-color: #5B44FB;
  color: #fff;
  transition: 1s;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.formulario > .btn:hover {
  border: 2.5px #3c3c3c solid;
  background-color: transparent;
  border-radius: 5px;
  transition: 1s;
  color: #3c3c3c;
}

.boxResultado {
  border: 3px #5B44FB solid;
  padding: 30px;
  font-size: 20px;
  display: none;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.boxResultado h3 {
  text-align: center;
  font-family: 'Francois One', sans-serif;
  color: #3c3c3c;
}

.boxResultado p {
  text-align: center;
  font-family: 'Francois One', sans-serif;
  color: #3c3c3c;
  font-size: 18px;
}

.btnIndex {
  height: 60px !important;
  width: 230px;
  font-size: 24px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background-color: #5B44FB;
  color: #fff;
  transition: 1s;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin: 50px 0;
  text-decoration: none;
  text-align: center;
}

.btnIndex:hover {
  border: 2.5px #3c3c3c solid;
  background-color: transparent;
  border-radius: 5px;
  transition: 1s;
  color: #3c3c3c;
}


/* Estilo para Smartphone */
@media only screen and (max-width: 787px) {

  .container {
    height: 1000px;
    justify-content: flex-start;
  }

  h1 {
    padding: 30px;
  }

  .boxFormulario {
    width: 90%;
    height: auto;
    padding: 30px 0 30px 0;
  }

  .formulario {
    width: 90%;
  }

  .formulario > .btn {
    margin: 0;
  }

  .boxFormulario h2 {
    font-size: 24px;
    width: 90%;
  }

  .boxFormulario .btnVoltar {
    width: 80%;
  }

  .boxFormulario label {
    font-size: 18px;
    width: 100%;
  }

  .boxFormulario input {
    width: 90%;
  }

  .formulario .iconIMG:hover, .formulario .iconIMG2:hover {
    padding: 30px;
  }

  .formulario .iconIMG, 
  .formulario .iconIMG2 {
    margin: 10px 0 -10px 0;
  }

  .boxResultado {
    padding: 15px;
    width: 85%;
    font-size: 18px;
  }
  
  .btnIndex {
      width: 80%;
  }


}