.all_content {
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--color-main);
}
/* Logo  */
.logo_content{ height: 25%; }
/* Imagem ilustrativa */
.vetorial_art_container{
  height: 25%;
  margin-top: 20px;
}
/* Botões  */
.father_buttons{
  height: 120px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
.buttons_login_register{
  width: 300px;
  max-width: 80vw;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #ffffff;
  background-color: transparent;
  font-size:22px;
  color: #ffffff;
  transition: all 0.1s ease;
}
.login_button:hover{
  background-color:#ffffff;
  color: var(--color-main);
}
.register_button{
  background-color:#ffffff;
  color: var(--color-main);
}
.register_button:hover{
  background-color:var(--color-main);
  color: #ffffff;
}
/* Versão do app  */
.text_mobile_version{
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-weight: 300;
  font-size: 17px;
  margin-top: 30px;
  margin-bottom:20px
}