/* auth.css — Telas de Login, Recuperação e Redefinição de senha
   (páginas standalone, sem sidebar) */

.auth-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #002b12 0%, #0a4a24 55%, #0e6a34 100%);
  padding: 24px;
}

.auth-wrap {
  width: 100%;
  max-width: 420px;
}

.auth-card {
  background: #fff;
  padding: 36px 32px;
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.auth-brand .logo {
  width: 46px;
  height: 46px;
}
.auth-brand h2 {
  margin: 0;
  font-size: 20px;
}

.auth-subtitle {
  color: #48624d;
  margin: 0 0 20px;
  font-size: 14px;
}

.auth-form label {
  margin-bottom: 16px;
}

.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  font-weight: 500;
  font-size: 14px;
}
.auth-row a {
  color: #1a7a4a;
  text-decoration: none;
  font-weight: 600;
}
.auth-row a:hover {
  text-decoration: underline;
}

.auth-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  margin: 0;
}
.auth-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: #08783f;
}

.auth-submit {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.auth-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 18px;
  line-height: 1.5;
}
.auth-alert-erro {
  background: #fbdcdc;
  color: #9a2626;
}
.auth-alert-sucesso {
  background: #d9f3dd;
  color: #1a6f3d;
}
.auth-alert-info {
  background: #eef7f0;
  color: #1a4d2e;
}
.auth-alert p {
  margin: 4px 0;
}
.auth-reset-link {
  display: block;
  word-break: break-all;
  color: #1a7a4a;
  font-weight: 600;
  margin-top: 4px;
}

.auth-back {
  display: block;
  text-align: center;
  margin: 22px 0 0;
}

.auth-footer {
  text-align: center;
  color: #d9f3dd;
  font-size: 12px;
  margin-top: 18px;
}

@media (max-width: 480px) {
  .auth-card {
    padding: 26px 20px;
  }
  .auth-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
