/* base */
:root{
  --red: #c7002e;         /* vermelho principal (próximo ao original) */
  --dark-red: #900018;
  --text: #111;
  --container-w: 920px;
  --font-serif: "Times New Roman", Times, serif;
}
*{box-sizing:border-box}
body{
  font-family: var(--font-serif);
  color:var(--text);
  background:#fff;
  margin:0;
  padding:18px 24px;
}
.page-wrap{
  width:var(--container-w);
  /* alinhado à esquerda como no site original */
}

/* header */
header h1{
  text-align:center;
  font-size:20px;
  margin:6px 0 8px;
  font-weight:700;
}
.top-line{
  height:6px;
  background: var(--red);
  margin-bottom:18px;
}
.top-line.thin{ height:4px; margin-bottom:18px; }

/* layout rows */
main{ padding:0 6px 30px 6px; }
.row{
  display:flex;
  align-items:center;
  gap:12px;
  margin:18px 0;
}

/* left label alignment */
.lab-left{
  min-width:160px;
  text-align:right;
  margin-right:8px;
  font-size:14px;
}


/* inputs style */
input.txt-small{
  width:150px;
  padding:6px 8px;
  border:1px solid #aaa;
  font-size:14px;
}
.code-inputs{ display:flex; gap:10px; align-items:center; }
input.code{
  width:70px;
  padding:6px;
  border:1px solid #888;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:2px;
}

/* buttons align right area */
.buttons{ display:flex; gap:8px; margin-left:14px; align-items:center; }
.btn{
  padding:6px 10px;
  border:1px solid #666;
  background:#f3f3f3;
  cursor:pointer;
  font-size:13px;
}
.btn.outline{ background:#fff; }

/* message area */
.message-area{ min-height:22px; margin:8px 0 0 160px; color:var(--red); font-weight:700; }

/* link list */
.link-list{ text-align:center; margin-top:22px; }
.link-list a{
  color:var(--red);
  font-weight:700;
  text-decoration:none;
}

/* info text (long paragraph) */
.info-text{
  margin-top:24px;
  font-size:13px;
  color:#222;
  max-width:760px;
}

/* lista page styles */
.small-title{ font-size:13px; margin:6px 0 12px 0; text-align:left; }
.doc-list-wrap{ max-width:600px; margin-left:6px; }
.doc-table{ border-collapse:collapse; width:100%; font-size:13px; }
.doc-table td{
  border:1px solid var(--red);
  padding:6px 8px;
  background:#fff;
}
.back-link{ text-align:center; margin-top:12px; }
.back-link a{ color: #b30000; font-family: "Times New Roman", Times, serif; font-weight:700;text-decoration: none; }


