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

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: #2f2841;
  border-radius: 20px;
  box-shadow: 0px 10px 40px #000;
  margin: auto;
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.main-login {
  width: 100vw;
  height: 100vh;
  background: #201b2c;
  display: flex;
  justify-content: center;
  align-items: center;
}

.line {
  display: flex;
  width: 100%;
  flex-direction: row;
}

.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: #BF8C2C;
  cursor: pointer;
  box-shadow: 0px 10px 40px -12px ;
  text-shadow: 1px 1px #fdc151;
}

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

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

.left-image-login {
  width: 30%;
  background-color: #f5e8d1;
  border-radius: 50%;
  box-shadow: 2px 2px 2px 2px #BF8C2C;
}

.left-login > span {
  font-family: 'Lobster', 'sans-serif';
  color: #BF8C2C;
  font-size: 3vw;
  font-weight: bold;
  text-shadow: 3px 3px #fff;
  letter-spacing: 0.7rem;
}

.left-login > h1 {
  color: #BF8C2C;
  font-size: 3vw;
}

.right-login {
  width: 50%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.msg {
  position:absolute; 
  display: flex;
  width: 30vw;
  height: 10vh;
  top: 10vh;
  left: 2vw;
  /* margin: 0 auto; */
  border-radius: 8px;
  border-width: 5px;
  border-style: solid;
  padding: 10px;
  color: #fff;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  z-index: 99;
}

.msg p {
text-align: center;
} 

.card-login {
  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 {
  color: #BF8C2C;
  font-weight: 800;
  margin: 0;
  text-shadow: 1px 1px #fff;
}

.left-login .logo {
  font-size: 2vw;
  color: #BF8C2C;
}

.btncadSenha {
  color: #BF8C2C;
  border:none;
  background-color: transparent;
  cursor: pointer;
}

@media only screen and (max-width: 1400px) {
  .card-login {
    width: 85%;
  }
}

@media only screen and (max-width: 600px) {

  .main-login {
    flex-direction: column;
  }

  .left-login > h1 {
    display: none;
  }

  .left-login {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  
  .right-login {
    width: 90%;
    height: auto;
  }

  .left-image-login {
    width: 50vw;
    overflow: hidden;
  }

}