/* Login provisório do Bora — light/clean. */

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  background: #F7F8FA;
  color: #111827;
  display: flex; align-items: center; justify-content: center;
}

.card {
  width: 360px;
  background: #FFFFFF;
  padding: 32px 28px 24px;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.brand { text-align: center; margin-bottom: 24px; }
.brand-name { font-size: 22px; font-weight: 700; letter-spacing: -.01em; }
.brand-sub { font-size: 12px; color: #6B7280; margin-top: 2px; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 12px; font-weight: 500; color: #374151; }
.field input {
  padding: 9px 12px;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  font-family: inherit; font-size: 13px; color: #111827;
  background: #FFFFFF;
}
.field input:focus { outline: none; border-color: #2563EB; }

.btn {
  width: 100%; padding: 10px;
  background: #2563EB; color: white;
  border: none; border-radius: 6px;
  font-family: inherit; font-size: 14px; font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
}
.btn:hover { background: #1D4ED8; }

.tag-prov {
  margin-top: 16px; text-align: center;
  font-size: 11px; font-weight: 500; color: #B45309;
  background: #FEF3C7; padding: 4px 10px; border-radius: 4px;
}
