@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

body *{
  box-sizing: border-box;
}

.main-login{
  width: 100vw; /*viewport width (100% da proporção)*/
  height: 100vh; /*viewport height (100% da proporção)*/
  background: #ffffff;
  display: flex; /*deixar os elementos lado a lado*/
  justify-content: center;
  align-items: center;
}


.left-login{
  width: 50vw;
  height: 100vh;
  display: flex;
}

.left-login-image{
  width: 45vw;
  align-items: left;
  position: fixed; 
  top: 0; 
  left: 0;
}

img {
  width: 30%;
  margin: auto;
  display: block;
}

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

.card-login{
  width: 80%;
  justify-content: center;
  align-items: center;
  padding: 30px 35px;
  margin: 0 auto;
}

.card-login2{
  margin-top: 80px;
}

.login-card{
  text-align: center;
  vertical-align: middle;
  color: #090e5b;
  font-weight: 800;
  /*margin: 0 auto;*/
  letter-spacing: 8px;
  align-items: center;
}

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

.textfield > input{
  vertical-align: middle;
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 15px;
  background: #ffffff;
  border: #c4c3c3;
  color: #363636;
  font-size: 12pt;
  box-shadow: 0px 10px 40px #eae7e7;
  outline: none;
  box-sizing: border-box;
  border-radius: 28px;
}

.incorreto{
  margin-top: 10px;
  margin-bottom: 10px;
}

.card-lembrar{
  justify-content: space-between;
  display: flex;
  align-items: flex-end;
}

.checkbox{
  font-size: 14px;
}

.esqueci-minha-senha{
  font-size: 14px;
}

.esquecisenha{
  border: 0 none;
  outline: 0;
  background: #ffffff;
  cursor: pointer;
  color: #00229b;
  text-decoration: underline;
}

.entrar{
  justify-content: space-between;
  display: flex;
  align-items: flex-end;
}

.btn-entrar{
  text-align: center;
  vertical-align: middle;
  width: 100px;
  padding: 10px 0px;
  font-size: 16px;
  /*margin: 25px;*/
  margin: 25px auto;
  border: none;
  border-radius: 28px;
  outline: none;
  color: #ffffff;
  background: #090e5b;
  cursor: pointer;
  box-shadow: -2px 3px 8px 1px #dcdcdc;
}

.btn-entrar:hover{
  background: #39802b;
}

.btn-iniciar{
  text-align: center;
  vertical-align: middle;
  width: 200px;
  padding: 10px 0px;
  font-size: 16px;
  /*margin: 25px;*/
  margin: 25px auto;
  border: none;
  border-radius: 28px;
  outline: none;
  color: #ffffff;
  background: #090e5b;
  cursor: pointer;
  box-shadow: -2px 3px 8px 1px #dcdcdc;
}

.btn-iniciar:hover{
  background: #39802b;
}

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

@media only screen and (max-width: 600px){
  .main-login{
    flex-direction: column;
  }

  .left-login{
    display: none;
  }

  .left-login-image{
    display: none;
  }

  .right-login{
    width: 100%;
    height: auto;
  }

  .card-login{
    width: 90%;
  }


}


