/* =======================================================
    AUTENTICAÇÃO (LOGIN / ESQUECEU SENHA / LOGIN GOOGLE)
   ======================================================= */

.auth-hero {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: #f9f9f9;
  padding: 20px 20px 20px;
}

.auth-hero__card {
  background: white;
  padding: 5px 15px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.auth-hero__title {
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--cor-primaria);
}

.auth-hero__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auth-hero__input {
  padding: 0.6em;
  font-size: 1em;
  margin-bottom: 0.5em;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 98%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.auth-hero__button {
  background-color: var(--cor-primaria);
  color: white;
  border: none;
  border-radius: 4px;
  margin-top: 0.05em;
  padding: 0.6em;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  width: 98%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.auth-hero__form button {
  margin-top: 0.05em;
  padding: 0.6em;
  font-size: 1em;
  width: 100%;
  cursor: pointer;
}

.auth-hero__google-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cor-cinza-claro2);
  color: var(--cor-preto);
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  margin-top: 0.5em;
  padding: 0.7em;
  font-weight: 600;
  font-size: 1em;
  text-decoration: none;
  width: 98%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.auth-hero__google-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.auth-hero__button:hover {
  background-color: var(--cor-primaria-hover);
}

.auth-hero__info {
  font-size: 0.65rem;
  color: #999;
  margin-top: 1px;
  text-align: center;
  line-height: 1.4;
}

.auth-hero__info a,
.auth-hero__links a {
  color: var(--cor-primaria);
  text-decoration: none;
  font-weight: 600;
}

.auth-hero__info a:hover,
.auth-hero__links a:hover {
  text-decoration: underline;
}

.auth-hero__links {
  margin-top: 1px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.auth-hero__links a {
  font-size: 0.85rem;
  margin: 5px 10px 0 0;
  font-weight: 500;
}

.auth-hero__divider {
  color: var(--cor-primaria);
  margin: 0 8px;
  font-weight: 500;
}

.auth-hero__back {
  justify-content: center;
}
