* {
    margin: 0;
    padding: 0;
  }
  :root {
    font-size: 62.5%;
  }
  body {
    background-color: grey;
    font-family: sans-serif;
    color: white;
    font-size: 1.6rem;
  }
  
  #barraTitulo {
    background-color: rgb(95, 95, 95);
    margin-top: 0;
    height: 100%;
    padding: 2.5vh 0 2.5vh 4vh;
    display: flex;
    align-items: center;
  }
  #titulo {
    font-size: 3.5vh;
    font-weight: 600;
  }
  #espaco {
    padding: 1.0rem 3.0rem;
    border: 0.1rem solid rgb(95, 95, 95);
  }
  #barraTitulo img {
    display: flex;
    height: 7vh;
    border-radius: 50%;
  
    position: absolute;
    left: 85%;
  }


 #acimaDeP {
  margin: 0.3rem;
  padding: 3.0rem;

 }

 #paragrafo {
  display: flex;
  justify-content: center;
  align-items: center;
 }
 .parede {
  padding: 1.0rem;
 }

  #alinhar {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 0 auto;
}


#mão {
  margin-top: 5vh;
  width: 30.0rem;
  height: auto;
}

.lado {
  display: flex;
  justify-content: center;
  margin-bottom: 10vh;
}

  .login {
    display: flex;
    align-items: center;
  
    flex-direction: column;
    margin-top: 5.0rem;
  }
  
  #quadrado {   
    background-color: rgb(53, 53, 179);
    padding: 6vh 3vw;
    border-radius: 4%;
    box-shadow: 0.3rem 0.3rem 0.1rem 0px;
  }
  
  h1 {
    margin-bottom: 2.0rem;
  }
  
  #envolta {
    padding-top: 1.5rem;
  }
  .espacoflutuante input {
    width: 100%;
    padding: 0.5rem;
    display: inline-block;
    border: 0;
    border-bottom: 0.3rem solid rgb(136, 131, 131);
    background-color: transparent;
    outline: none;
    min-width: 18.0rem;
    font-size: 1.6rem;
    transition: all .3s ease-out;
  }
  .espacoflutuante {
    position: relative;
    padding: 1.3rem;
  }
  .espacoflutuante input:focus {
    border-bottom: 0.2rem solid cadetblue;
  }
  .espacoflutuante label {
    pointer-events: none; /*não podemos fazer nada com as labels; são travadas; ex: não são clicáveis*/
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 1.3rem;
    transition: all .3s ease-out;
  }
  .espacoflutuante input:focus + label,
  .espacoflutuante input:valid + label {
    font-size: 1.3rem;
    margin-top: 0;
  }

/* configuração do olhinho */
/*a classe já vem do site*/
.fa-eye {
  position: absolute;
  top: 1.3rem;
  right: 1.0rem;
  cursor: pointer;
  color: rgb(52, 50, 50);
}

  
  button {
    background-color: rgb(142, 142, 246);
    border-color: rgb(136, 131, 131);
    padding: 0.7rem;
    font-weight: bold; /*"bold" deixa o texto em negrito*/
    font-size: 1.2rem;
    margin-top: 2.0rem;
    border-radius: 0.8rem;
    cursor: pointer; /*quando passa o mouse no botão, aparece uma mãozinha*/
  }
  button:hover {
    background-color: rgb(208, 208, 229);
    transition: all .4s ease-out;
  }
  button a {
    text-decoration: none;
    color: black;
  }
  p a {
    text-decoration: none;
    color: rgb(96, 96, 255);
    font-weight: bold;
  }
  
hr {
  padding: 0.1rem 13.0rem;
  border: 2.5rem solid rgb(53, 53, 179);
  border-collapse: collapse;
  background-color: rgb(214, 206, 206);
}

  #msgDeErro {
    text-align: center;
    color: #ff0000;
    background-color: #ffbbbb;
    padding: 1.0rem;
    border-radius: 0.4rem;
    display: none;
  }    
