@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';
}

.logo {
  position: absolute;
}

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

.cardModal {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 35px;
  background: rgba(49, 88, 87, 0.8);
  border-radius: 20px;
  box-shadow: 0px 10px 40px #00000056;
  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/marina_igararece.jpg);
  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;
}

.input {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 5px;
  background: #a3a2a5;
  color: #000316de;
  font-size: 12pt;
  box-shadow:  0px 10px 40px #00000056;
  outline: none;
  box-sizing: border-box;
}

.inputPass {
  background: transparent;
  border: none;
  width: 90%;
  outline: none;
  padding: 0 10px;
  color: #000316de;
}

.iconInput {
  color: #0630ec;
}

.uppercase {
  text-transform: uppercase;
}

.textfield > label {
  color: #f36f1b;
  margin-bottom: 10px;
  /* text-shadow: 1px 1px #0630ec; */
  font-weight: bold;
  font-size: 22px;
}

.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: #0630ec;
  background: #f36f1b;
  cursor: pointer;
  box-shadow: 0px 10px 40px -12px ;
  text-shadow: 1px 1px #f38f50;
}

.btn-modal {
  box-shadow: none ;
  padding: 16px 10px;
}

.btn-login:hover, .btn-modal:hover {
  background: #f8853e;
}

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

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

.card-login {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 35px;
  background: rgba(49, 88, 87, 0.8);
  border-radius: 20px;
  box-shadow: 0px 10px 40px #00000056;
}

.card-login > h1, .cardModal > h1 {
  color: #f36f1b;
  font-size: 4rem;
  font-weight: 800;
  margin: 0;
  /* text-shadow: 2px 2px #671bf3; */
}

.btncadSenha {
  font-size: 18px;
  font-weight: 600;
  color: #f3831b;
  border:none;
  background-color: transparent;
  cursor: pointer;
  text-shadow: 1px 1px #291bf3;
}
.btncadSenha:hover {
  color: #f79a61;
}