@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

html,
body {
  background-color: #CEFBBE;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: block;
}

main {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}


.container {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.lock {
  background-color: #0f5c0e;
  width: 50px;
  height: 50px;
  margin: auto;
  border-radius: 50%;
}

.lock img {
  width: 30px;
  height: 30px;
  margin-top: 10px;
}

.container h1 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 0;
  color: #003103;
}

.container p {
  font-size: 16px;
  color: #0F2A00;
  margin-top: 0;
  margin-bottom: 30px;
}

.formulario {
  background: white;
  padding: 10px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.127);
  width: 250px;
  text-align: center;
}

.formulario h1 {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
}

.formulario label {
  display: block;
  margin-top: 15px;
  margin-left: 5px;
  text-align: left;
  font-weight: bold;
  font-size: 14px;
  color: #656565;
}

.formulario input {
  width: 235px;
  padding: 10px;
  margin-top: 5px;
  background-color: white;
  color: #929292;
  font-size: 14px;
  border-radius: 10px;
  border: 2px solid #929292;
}

.enviar {
  background-color: #3D8F24;
  color: white;
  width: 70%;
  cursor: pointer;
  font-weight: bold;
  margin-top: 20px;
  text-transform: capitalize;
  position: relative;
  border: none;
  border-radius: 7px;
  padding: 10px 20px;
}

.enviar:hover {
  background-color: #0f5c0e;
}

.seta {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 38px;
  bottom: 8px;
  color: white;
}

.adm {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 15px;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

.logo {
  height: 40px;
  width: 30px;
  padding: 20px;
}

.voltar a,
.voltar a:visited {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  font-size: 14px;
  border-bottom: 2px solid #000000;
}

.cadastrese {
  margin-top: 20px;
  font-size: 12px;
  text-decoration: underline;
}

.cadastrese a,
.cadastrese a:visited {
  text-decoration: none;
  color: #011e0c;
  font-weight: bold;
}

footer {
  background-color: #022C00;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  position: relative;
  bottom: 0;
}

footer h3 {
  color: #BAE599;
}

.links-f {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.exp-mapa {
  font-size: 14px;
  color: black;
  background-color: white;
  padding: 5px 10px;
  border-radius: 10px;
  font-weight: bold;
}

.exp-mapa a,
.exp-mapa a:visited {
  text-decoration: none;
  color: #0F2A00;
}

.exp-mapa img {
  width: 20px;
  height: 20px;
  margin-left: 5px;
}

.site {
  font-size: 14px;
  color: white;
  padding: 5px 10px;
  border-radius: 10px;
  font-weight: bold;
}

.site a,
.site a:visited {
  text-decoration: none;
  color: white;
}

.site img {
  width: 20px;
  height: 20px;
  margin-left: 5px;
}

.linha {
  background-color: white;
  width: 93%;
  height: 2px;
  margin: auto;
}

footer p {
  font-size: 12px;
  color: #BAE599;
  margin-top: 15px;
}


/* Media Queries */


/** NOTEBOOK **/

@media only screen and (min-width: 992px) {

  .container {
    margin-top: -40px;
  }

  .lock {
    scale: 1.5;
  }

  .container h1 {
    font-size: 40px;
  }

  .container p {
    font-size: 24px;
  }

  .formulario {
    width: 40%;
  }

  .formulario label {
    margin-left: 16%;
    font-size: 17px;
  }

  .formulario input {
    width: 65%;
    font-size: 17px;
  }

  .enviar {
    width: 40%;
  }

  footer h3 {
    font-size: 25px;
    margin: 0;
  }

  .links-f {
    justify-content: center;
    gap: 80px;
  }

}