aside{
  grid-area: aside;
  padding: 0 5%;
  margin: 3% 9%;
}

@media screen and (min-width: 768px){
.container2{
  display: grid;
  grid-template-columns: 60% 40%;
  justify-content: space-between;
  grid-template-areas: 
    "header header"
    "aside main"
    "footer footer"
    ;
}
header{
  grid-area: header;
}
aside{
  grid-area: aside;
  margin-top: 124px;
}
main{
  grid-area: main;
  margin-top: 30px;
}
footer{
  grid-area: footer;
}
}

@media screen and (max-height: 663px){
  main{
    grid-area: main;
    height: 500px;
  }
}

@media screen and (min-height: 800px){
  main{
    grid-area: main;
    height: 730px;
  }
}

#login-area{
  border: 0.5px solid var(--border-color-primary);
  padding: 2rem 2rem;
  border-radius: 5px;
  margin: auto;
  width: 370px;
  box-shadow: 5px 5px 5px grey;
  background-color: #ffffff;
}

.form-control{
  height: 32px;
  font-size: 14px;
}

#bt-login {
  width: 100%;
  height: 42px;
  font-size: 24px !important;
}
#bt-esqueci-senha{
  margin: auto;
  font-size: 12px !important;
}
#bt-esq-senha{
  text-align: center;
}

#cad {
  background-color: #007bff;
  color: white;
  width: 99.5%;
  margin-left: 5px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#bt-login {
  width: 100%;
  height: 4rem;
}

#cad:hover{
  background-color: #2b69d9;
  transition: 0.5s;
}

#page-msg2 {
  color: black;
  margin-top: 28px;
  text-align: center;
}

.btn-salvar{
  padding: 8px 16px;
  font-size: 22px;
  width: 100%;
}
