@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Ethiopic:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: auto;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #222;
  font-family: 'Noto Sans Ethiopic', sans-serif;
  background-image: url('../assets/imagens/bg2.jpeg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100vh;
}

.form {
  margin-top: 200px;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-self: center;
}

.form-logo {
  width: 250px;
  margin-left: 50px;
}

.formErro {
  font-size: 20px;
  text-align: center;
  align-self: center;
  position: absolute;
  top: calc(var(--hdresol-h)/2);
  left: calc(var(--hdresol-w)/2.3);
  color: red;
  animation-name: anim-erro-login;
  animation-duration: 1s;
  animation-direction: alternate-reverse;
  animation-iteration-count: infinite;
}

.form-email,
.form-senha,
.form-entrar {
  margin-top: 20px;
  height: 60px;
  width: 70vw;
  padding-left: 50px;
  border-radius: 12px;
  border-style: none;
  outline: none;
  background-color: #71757960;
  font-weight: 700;
  font-size: 18px;
  color: white;
  border: 2px solid transparent;
}

.form-entrar {
  margin-top: 50px;
  height: 80px;
  padding: 0 !important;
  background-color: #ffb000;
  color: white;
}

.form-email:focus,
.form-senha:focus,
.form-entrar:focus {
  border: 2px solid #ffb000;
}

.req {
  border: 2px solid red !important;
}

.form-entrar:focus {
  background-color: #ffb000;
  color: #333;
  border-color: #333;
  border-style: solid;
  border-width: 2px;
}

.container-qrCodeLogin,
.qrCodeLogin {
  display: flex;
  align-self: center;
  justify-self: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 60%;
  height: 60%;
  margin-top: 10%;
  position: fixed;
  background-color: #333;
  border-radius: 20px;
  border-width: 4px;
  border-color: darkorange;
  border-style: solid;
  box-shadow: 0 0 900px 100px black;
  color: white;
  top: 0;
  z-index: 9999 !important;
}

#tempo-restante {
  margin-top: 10px;
}

.codigo {
  margin-top: 10px;
  font-size: 42px;
  letter-spacing: 10px;
}

.esconder-qrCode {
  display: none !important;
}

.mostrar-qrCode {
  display: flex !important;
  z-index: 1;
}

h1 {
  z-index: 1;
  color: white;
  font-size: 36px;
}

p {
  z-index: 1;
  color: white;
  /* font-size: 14px; */
  /* margin-bottom: 40px; */
}

.qrCodeImage {
  margin-top: 10px;
}

@media all and (max-width: 1919px) {
  .container-qrCodeLogin,
  .qrCodeLogin {
    margin-top: 5%;
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .codigo {
    margin-top: 5px;
    font-size: 36px;
    letter-spacing: 10px;
  }

  .qrCodeImage {
    margin-top: 5px;
  }

  #fecharQrCode {
    margin-bottom: 10px !important;
  }
}