/* ==========================================================
   Auth Layout — Hub do Desenvolvedor
   Alinhado ao visual da tela de escolha de pagamento
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background-color: #f5f8ff;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  text-align: center;
}

/* ---------- Container ---------- */
.auth-container {
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
}

.auth-container img.logo {
  max-width: 190px;
  margin-bottom: 22px;
}

.auth-container h1 {
  font-size: 1.7em;
  color: #4285F4;
  font-weight: 700;
  margin-bottom: 0.6em;
}

.auth-container p.subtitle {
  color: #666;
  margin-bottom: 2em;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ---------- Formulário ---------- */
form {
  text-align: left;
  margin-top: 20px;
}

.input-container {
  margin-bottom: 20px;
}

.input-container label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
  display: block;
  margin-bottom: 6px;
}

.input-container input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.input-container input:focus {
  border-color: #4285F4;
  box-shadow: 0 0 0 2px rgba(66,133,244,0.2);
  outline: none;
}

/* ---------- Botões ---------- */
.button-containerere {
  margin-top: 28px;
}

button.g-recaptcha {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .02em;
  background-color: #4285F4;
  color: #fff;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .02s ease, background-color .15s ease;
}

button.g-recaptcha:hover {
  background-color: #3367D6;
}

button.g-recaptcha:active {
  transform: translateY(1px);
}

/* ---------- Links e rodapé ---------- */
.footer-link {
  margin-top: 25px;
  font-size: 0.9rem;
  color: #27558B;
}

.footer-link a {
  color: #27558B;
  text-decoration: none;
  font-weight: 500;
}

.footer-link a:hover {
  text-decoration: underline;
}

.footer {
  margin-top: 22px;
  font-size: 0.9em;
  color: #999;
}

/* ---------- Responsividade ---------- */
@media (max-width: 480px) {
  .auth-container {
    padding: 30px 20px;
  }
}
