html, body {
    height: 100%; /* Ocupa a altura total da tela */
    width: 100%;
    margin: 0; /* Remove margens padrão */
    display: flex; /* Define o layout como flex */
    justify-content: center; /* Alinha o conteúdo no centro horizontalmente */
    align-items: center; /* Alinha o conteúdo no centro verticalmente */

}

h1, a, span, p{
    font-family: sans-serif;
}

.card_login{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items: center;
    height:40vh;
    background-color: rgba(255, 255, 255, 0.885);
    border: 1px solid rgba(37, 37, 37, 0.129);
    border-radius: 10px;
    box-shadow: 0px -2px 4px rgba(163, 163, 163, 0.109), 0px -4px 8px rgba(163, 163, 163, 0.093);
}

.text_error{
    text-align: center; 
    margin-top: 25px;
    margin-bottom: 0px;
    color: brown;
}

.app_name {
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 7px;
  text-align: center;
  color: #515151;
}

.title_login{

  color: #474747;
  margin-bottom: 15px;
}

.google-btn {
    display: flex;
    align-items: center;
    background-color: #585858;
    color: #eeeeee;
    height: 50px;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 5px;
    box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.15);
    padding-inline: 20px;
    text-decoration: none;
}

.btn-text {
    margin-left: 10px;
}

