/* Login + reset-senha — paleta dark canonica de .claude/rules/ui.md
   ------------------------------------------------------------- */

:root {
  --bg-1: #1e1e1e;
  --bg-2: #252526;
  --bg-3: #2d2d30;
  --bg-hover: #3c3c3c;
  --bg-selected: #094771;
  --text-main: #cccccc;
  --text-white: #ffffff;
  --text-hint: #858585;
  --accent-blue: #007acc;
  --accent-blue-hover: #1184d3;
  --accent-green: #4ec9b0;
  --accent-red: #cc3333;
  --border: #3e3e42;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-1);
  color: var(--text-main);
  font-family: 'Segoe UI', 'Inter', sans-serif;
  font-size: 11px;
}

.page-auth {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  width: 100%;
  max-width: 360px;
}

.auth-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--accent-blue);
  color: var(--text-white);
  font-weight: bold;
  font-size: 12px;
  border-radius: 2px;
}

.auth-titulo {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
}

.auth-subtitulo {
  margin: 0;
  font-size: 11px;
  color: var(--text-hint);
}

.auth-erro {
  background: rgba(204, 51, 51, 0.12);
  border: 1px solid var(--accent-red);
  border-radius: 3px;
  color: var(--text-white);
  padding: 8px 10px;
  font-size: 11px;
}

.auth-confirm {
  background: rgba(78, 201, 176, 0.10);
  border: 1px solid var(--accent-green);
  border-radius: 3px;
  color: var(--text-main);
  padding: 10px 12px;
  font-size: 11px;
  line-height: 1.4;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.campo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.campo-label {
  font-size: 11px;
  color: var(--text-main);
}

.campo input {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-white);
  font-family: inherit;
  font-size: 11px;
  padding: 6px 8px;
}

.campo input:focus {
  outline: none;
  border-color: var(--accent-blue);
}

.btn-primario {
  background: var(--accent-blue);
  color: var(--text-white);
  border: none;
  border-radius: 3px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 12px;
  cursor: pointer;
}

.btn-primario:hover {
  background: var(--accent-blue-hover);
}

.auth-link {
  display: block;
  text-align: center;
  color: var(--text-hint);
  font-size: 11px;
  text-decoration: none;
  margin-top: 4px;
}

.auth-link:hover {
  color: var(--text-white);
}

.auth-rodape {
  font-size: 11px;
  color: var(--text-hint);
  text-align: center;
}
