body {
  margin: 0px;
  background-color: #414658;
}

.container {  
  width: 100%;
  height: 100%;
}


a:hover {
  text-decoration: none;
}

a {
  text-decoration: none;
}

.login-center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: fit-content;
}

/* LOGIN IMAGE */

.login-image { 
  text-align: center;
  align-self: center;
  margin: 2rem 1rem 2rem 0px;
  display: inline-block;
}

.login-image img {
  max-height: 80%;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 100%);
}

/* LOGIN FORM */

.login-form { 
  display: inline-block;
  justify-self: left;
  align-self: center;
  margin-left: 10px;
}

.login-text {
  font-family: 'Montserrat', sans-serif;
  font-size: xx-large;
  font-weight: 600;
  color: #f0f0f0;
  margin-bottom: 1rem;
  margin-top: 0rem;
}

/* NAVBAR */


.navbar {
  background-color: #282a36;
  border-bottom: 1px solid #676c88;
  display: flex;
  justify-content: center;
  align-items: center;
  height: fit-content;
}

#logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 20px auto;
}

#logo p {
  margin-left: 3rem;
  font-family: 'Montserrat', sans-serif;
  font-size: x-large;
  font-weight: 600;
  color: #f0f0f0;
}

#logo p span:nth-child(1) {
  color: #339cd1;
}

#logo p span:nth-child(2) {
  color: #e9a931;
}

/* CONSENT TERMOS E CONDIÇÕES */

.consent-area {
  font-family: 'Montserrat', sans-serif;
  font-size: small;
  font-weight: 600;
  color: #f0f0f0;
  margin-top: 1rem;
  text-wrap: wrap;
}


.consent-area a {
  color: #24bed3 !important;
}

/* POLÍTICA DE PRIVACIDADE E TERMOS DE USO */

.pp-area {
  font-family: 'Montserrat', sans-serif;
  font-size: small;
  font-weight: 600;
  color: #f0f0f0;
  padding: 1rem 3rem 2rem 2rem;
  text-wrap: wrap;
}

.pp-area a {
  color: #24bed3;
}

.tu-area {
  font-family: 'Montserrat', sans-serif;
  font-size: small;
  font-weight: 600;
  color: #f0f0f0;
  padding: 2rem 3rem 2rem 2rem;
  text-wrap: wrap;
}

.tu-area  a{
  color: #24bed3;
}

.return-to-main-page {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: larger;
  color:#dea3f5;
  border: 3px solid #815294;
  border-radius: 10px;
  display: inline-block;
  padding: 2px 10px;
  margin: 0rem 0rem 3rem 2rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  transition: ease 0.2s;
}

.return-to-main-page:hover {
  color:#ebcff7;
  border-color: #bb8cce;
}

.return-to-main-page i {
  margin-right: 8px;
}

/* Botão padrão de login */
.login-button {
  font-weight: 600;
  color: #e8eaed;
  background-color: #202124; /* Mesma cor do link */
  border: none;
  border-radius: 20px;
  box-sizing: border-box;

  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px;
  transition: all 0.3s ease-in-out;
  
  font-family: "Google Sans", arial, sans-serif;
  font-size: 14px;
  height: 40px;
  letter-spacing: 0.25px;
  outline: none;
  overflow: hidden;
  padding: 0px;
  position: relative;

  vertical-align: middle;
  white-space: nowrap;
  width: 100%;
  
  display: flex;
  align-items: center;
  justify-content: center; /* Para centralizar o texto */
  text-align: center;
}

.login-button span {
  margin-right: 1rem;
}

.login-button:hover {
  background-color: gray; /* Cor mais escura no hover */
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 8px;
}

.anonymous-login {
  margin-top: 1rem;
  text-align: center;
  margin-left: 10px;
}
/* Força o texto a ficar centralizado */
.login-button span {
  flex-grow: 1; /* Faz o texto ocupar o espaço disponível */
  text-align: center;
}

/* Estilo da imagem no botão */
.login-icon {
  height: 100%;
  margin-left: -17px;
}


.login-icon-wrapper span {
  margin-right: 2px;
}