body {
  font-family: sans-serif;
  background: url(../img/fundo_login.jpeg) no-repeat;
  background-size: cover;
}

/******************
* Tags Semânticas**
******************/
header {
  width: 100%;
  height: 120px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}

main {
  width: 100%;
  height: calc(100% - 170px);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* footer {
  width: 100%;
  height: 50px;
  text-align: center;
} */

/**********************
* Estilização da logo *
***********************/
.logo {
  height: 110px;
  z-index: 3;
}
.logo img {
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/********************************
* Estilização do bloco de login *
*********************************/
.login-box {
  width: 400px;
  color: white;
  text-shadow: 0.1em 0.1em 0.2em black;
  padding: 20px;
  border-style: solid;
  border-width: 3px;
  border-color: #09116b;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.356);
}

.login-box h1 {
  float: left;
  font-size: 40px;
  border-bottom: 6px solid #09116b;
  margin-bottom: 50px;
  padding: 13px 0;
}

.textbox {
  width: 100%;
  overflow: hidden;
  font-size: 20px;
  padding: 8px 0;
  margin: 8px 0;
  border-bottom: 1px solid #09116b;
}

.textbox i {
  width: 26px;
  float: left;
  text-align: center;
}

.textbox input {
  border: none;
  outline: none;
  background: none;
  color: black;
  font-size: 18px;
  width: 80%;
  float: left;
  margin: 0 10px;
}

.btn {
  width: 100%;
  background: rgba(255, 253, 253, 0.404);
  border: 2px solid #09116b;
  color: black;
  padding: 5px;
  font-size: 18px;
  cursor: pointer;
  margin: 12px 0;
  border-radius: 20px 20px 20px 20px;
}

.box input[type="submit"] {
  border: 0;
  background: none;
  display: block;
  margin: 20px auto;
  text-align: center;
  border: 2px solid #09116b;
  padding: 14px 40px;
  outline: none;
  color: black;
  border-radius: 24px;
  transition: 0.5s;
  cursor: pointer;
}

.box input[type="submit"]:hover {
  background: #0a3a9b;
  color: white;
}

footer p {
  text-align: center;
  font-size: 12.5px;
  color: white;
  font-weight: bold;
  letter-spacing: 2px;
  font-family: Arial;
}
