/* login.css */
html{
  height: 100%;
}
body{
  display: flex;
  flex-direction: column;
  height: 100%;
  
}
h2{
  color: var(--tgt-grey--600);
  font-family: Nunito;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  margin: 1rem 0;
}
h3{
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  margin: 1rem 0;
}
.cards{
  margin: 0 auto;
  padding: 1rem;
  max-width: 600px;
}
footer{
  margin-top: auto;
} 
@media(min-width: 768px){
  .cards {
      padding: 2rem;
  }
}
/* login.css - fim */