@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100..900&display=swap');


/* cores

azul = #024675
laranja = #f36f1b

*/


body {
  width: 100vw;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans', 'sans-serif';
}

.modal {
  display: none;
  position: absolute;
  z-index: 2;
  width: 100vw;
  min-height: 100vh;
  background: rgba(200,200,200, 0.7);
  align-content: center;
  margin: 0;
}

.cardModal {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 35px;
  background: #313131;
  border-radius: 20px;
  box-shadow: 0px 10px 40px #000;
  margin: auto;
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.cardModal > h1 {
  font-weight: bold;
}

.main-login {
  width: 100vw;
  height: 100vh;
  background-image: url(../img/fundo.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.textfield {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 10px;
}

.textfield > input {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 15px;
  background: #514869;
  color: #f0ffffde;
  font-size: 12pt;
  box-shadow:  0px 10px 40px #00000056;
  outline: none;
  box-sizing: border-box;
}

.textfield > label {
  color: #f0ffffde;
  margin-bottom: 10px;
  /* text-shadow: 1px 1px #BF8C2C; */
}

.textfield > input::placeholder {
  color: #f0ffff94;
}

.btn-login, .btn-modal {
  width: 100%;
  padding: 16px 5px;
  margin: 25px;
  border: none;
  border-radius: 8px;
  outline: none;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 3px;
  color: #2b134b;
  background: #f36f1b;
  cursor: pointer;
  box-shadow: 0px 10px 40px -12px ;
  text-shadow: 1px 1px #f38f50;
}
.btn-login:hover, .btn-modal:hover {
  background: #f8853e;
}

.btn-modal {
  width: auto;
  margin-left: 10px;
}

.left-login {
  height: 100vh;
}

.right-login {
  width: 50%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-login, .cardModal {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 35px;
  background: #2f2841;
  border-radius: 20px;
  box-shadow: 0px 10px 40px #00000056;
}

.card-login > h1, .cardModal > h1 {
  color: #f36f1b;
  font-weight: 800;
  margin: 0;
  text-shadow: 1px 1px #f79a61;
}

.btncadSenha {
  color: #f36f1b;
  border:none;
  background-color: transparent;
  cursor: pointer;
}
.btncadSenha:hover {
  color: #f79a61;
}