* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  border: none;
  font-family: 'Press Start 2P', cursive;
}

html {
  min-height: 100%;
  background-image: url("../img/img_fundo.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  flex-direction: column;
}

.container {
  background-color: rgba(0, 0, 0, 0.911);
  width: 400px;
  height: 550px;
  border-radius: 5%;
  color: antiquewhite;
  flex-direction: column;
}

.login-form {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
}

.login__header {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: -10px;
}

.input_login {
  border: 2px solid #333;
  border-radius: 8px;
  color: #333;
  font-size: 1em;
  margin-bottom: 17px;
  max-width: 300px;
  outline: none;
  padding: 15px;
  width: 100%;

}

.login__button {
  background-color: green;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 1em;
  max-width: 200px;
  padding: 15px;
  width: 100%;
}

.icon {
  position: absolute;
  top: 503px;
  cursor: pointer;
  left: 55em;
}