/* /public/assets/css-pages/eleicao/votar-logar-layout-novo.css */

/* ===== GLOBAL (evita flicker por variação da scrollbar) ===== */
html{
  scrollbar-gutter: stable !important;
  overflow-y: scroll !important;
  height: 100%;
}
body{ min-height: 100%; }

/* ===== TOKENS ===== */
:root{
  --svl-bg: url("/public/assets/images/bg-main-white-preserve-lines.png");
  --svl-red: #d43f46;
  --svl-ink: rgb(81, 76, 76);
  --svl-gray: #5a6368;

  --svl-border: rgba(0,0,0,.08);
  --svl-border-strong: rgba(0,0,0,.10);
  --svl-shadow: 0 12px 28px rgba(0,0,0,.045);

  --svl-font-sans: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Noto Sans";
}

/* ===== PAGE BASE (GRID: header / main / footer) ===== */
body.asb-body{
  background-image: var(--svl-bg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;

  font-family: var(--svl-font-sans);
  color: #0f172a;

  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

@media (max-width: 575.98px){
  body.asb-body{ background-attachment: scroll; }
}

/* MAIN ocupa a linha do meio e pode esticar */
main.svl-main{
  min-height: 0; /* essencial em grid */
  padding-bottom: 0;
}

.svl-main-inner{
  height: 100%;
  min-height: 0;
}

/* ===== HEADER (SVH) ===== */
.svh-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  margin-bottom: 0;
}

.svh-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  transition: padding .18s ease;
}

.svh-inner{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.svh-brand{
  display: flex;
  align-items: center;
  gap: 14px;
}

.svh-logo{
  height: 58px;
  transition: height .18s ease;
}

.svh-text{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.svh-entidade{
  margin: 0;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 25px;
  color: var(--svl-ink);
}

.svh-subtitle{
  padding-top: 2px;
  color: #6b7280;
  font-size: 14px;
}

.svh-redbar{
  height: 10px;
  background: var(--svl-red);
  transition: height .18s ease;
}

/* shrink */
@media (min-width: 769px){
  .svh-container{ transition: none !important; }

  .svh-inner{
    transition: transform .18s ease !important;
    transform-origin: left center;
    will-change: transform;
  }

  .svh-header.svh-shrink .svh-container{ padding: 16px 20px !important; }
  .svh-header.svh-shrink .svh-logo{ height: 58px !important; }
  .svh-header.svh-shrink .svh-entidade{ font-size: 30px !important; }
  .svh-header.svh-shrink .svh-subtitle{ font-size: 13px !important; }
  .svh-header.svh-shrink .svh-inner{ transform: scale(0.88) !important; }
}

@media (max-width: 768px){
  /* sem animação no mobile */
  .svh-container,
  .svh-logo,
  .svh-entidade,
  .svh-subtitle,
  .svh-inner,
  .svh-redbar{
    transition: none !important;
  }

  /* MOBILE: já nasce “shrink” */
  .svh-container{ padding: 10px 16px !important; }
  .svh-logo{ height: 42px !important; }
  .svh-entidade{ font-size: 24px !important; }
  .svh-subtitle{ font-size: 12px !important; }

  .svh-inner{
    transform-origin: left center;
    will-change: transform;
    transform: scale(0.84) !important;
  }

  /* opcional: redbar menor no mobile (se você quiser) */
  /* .svh-redbar{ height: 8px !important; } */
}

/* ===== MOBILE TITLE (acima do form) ===== */
.svl-title-mobile{
  display: none;
  margin: 8px 0 0px 0;
  padding-bottom: 0px;
  border-bottom: 1px solid var(--svl-border-strong);
}

.svl-mobile-kicker{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(90,99,104,.85);
  margin-bottom: 6px;
}

.svl-mobile-title{
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: var(--svl-ink);
}

.svl-mobile-range{
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

/* ===== LAYOUT (duas colunas com altura independente) ===== */
.svl-layout{
  display: grid;
  grid-template-columns: 520px 520px;
  gap: 18px;

  height: 100%;
  min-height: 0;
  align-items: stretch;
}

/* puxa o form para direita */
.svl-formpanel{ justify-self: end; }

.svl-left,
.svl-formpanel{
  height: 100%;
  min-height: 0;
  width: 100%;
  max-width: 520px;
  overflow: hidden;
}

.svl-left-inner{
  height: 100%;
  min-height: 0;
  overflow: auto;

  padding-top: 15%;
  padding-left: 18px;
  padding-right: 18px;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svl-formcard{
  max-height: 100%;
  overflow: auto;

  background: #fff;
  border: 1px solid var(--svl-border);
  border-radius: 8px;
  padding: 18px;
  margin-top: 50px;
  box-shadow: var(--svl-shadow);
}

/* ===== ESQUERDA ===== */
.svl-left-head{
  padding: 10px 0 14px 0;
  border-bottom: 3px solid var(--svl-red);
}

.svl-kicker{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(90,99,104,.85);
  margin-bottom: 10px;
}

.svl-left-subtitle{
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: rgba(81,76,76,.92);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.svl-period{
  margin-top: 4px;
  padding: 12px 0 14px 0;
  border-bottom: 0 solid var(--svl-border-strong);
}

.svl-period-label{
  font-size: 12.5px;
  font-weight: 800;
  color: rgba(15,23,42,.70);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.svl-period-range{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #111827;
}

.svl-date{
  background: #f3f4f6;
  border: 1px solid var(--svl-border);
  padding: 6px 10px;
  border-radius: 2px;
}

.svl-sep{
  color: rgba(90,99,104,.95);
  font-weight: 800;
}

/* idiomas */
.svl-langs{
  margin-top: 2px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.svl-langs-mobile{ display: none; }

.svl-flag{
  display: inline-flex;
  border-radius: 4px;
  padding: 2px;
  transition: transform .12s ease, background .12s ease;
}

.svl-flag:hover{
  transform: translateY(-1px);
  background: rgba(0,0,0,.04);
}

/* parceiros no fim do quadro esquerdo */
.svl-partners{
  margin-top: auto;
  padding-top: 14px;
  border-top: 0 solid var(--svl-border);
}

/* ===== “TÍTULO” DO CARD (usado na esquerda) ===== */
.asb-card-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.asb-card-title-wrap{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.asb-card-accent{
  width: 3px;
  height: 26px;
  background: var(--svl-gray);
  flex: 0 0 auto;
  transition: height .18s ease;
}

.asb-card-title{
  margin: 0;
  cursor: default;

  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 800;

  font-size: 20px;
  line-height: 25px;
  color: var(--svl-red);

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.asb-card-title-wrap:hover .asb-card-accent{ height: 34px; }

/* ===== FORM ===== */
.svl-label{
  font-weight: 800;
  color: #374151;
  font-size: 13px;
}

.svl-input{
  border-radius: 2px;
  height: 38px;
}

.svl-actions{ margin-top: 12px; }

.svl-btn-final{
  border-radius: 1px !important;
  height: 40px;
  font-weight: 800;
  background: var(--svl-gray);
  border-color: var(--svl-gray);
}

.svl-btn-final:hover{
  background: var(--svl-red) !important;
  border-color: var(--svl-red) !important;
}

.svl-btn-outline{
  border-radius: 1px !important;
  height: 40px;
  font-weight: 800;
}

.svl-separado{ margin-top: 14px; }

.svl-btn-separado{
  max-width: 320px;
  width: 100%;
  border-radius: 1px !important;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 800;
}

/* aviso início */
.svl-textinicio{
  background: #fff;
  border: 1px solid var(--svl-border);
  border-radius: 8px;
  padding: 16px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px){
  .svl-layout{
    display: block;
    height: auto;
  }

  .svl-left{ display: none; }

  .svl-formpanel{
    max-width: 100%;
    justify-self: unset;
  }

  .svl-formcard{
    max-height: none;
    overflow: visible;
  }

  .svl-title-mobile{ display: block; }
  .svl-langs-mobile{ display: flex; }
  .svl-langs-desktop{ display: none; }
}

/* select2 */
.select2-container--default .select2-selection--single{
  border-radius: 2px;
  height: 38px;
  border: 1px solid #ced4da;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
  line-height: 36px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
  height: 36px;
}

/* ===== FOOTER ===== */
.asb-site-footer{
  margin-top: 0;
  background: #5a6368;
  color: #fff;
  padding: 26px 0 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.asb-footer-grid{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.asb-footer-brand{ max-width: 520px; }

.asb-footer-desc{
  font-size: 0.92rem;
  opacity: 0.85;
}

.asb-footer-right{
  display: flex;
  justify-content: flex-end;
}

.asb-footer-badges{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.asb-footer-badge{
  background: rgba(241,245,249,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 2px;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 6px 10px;
  white-space: nowrap;
}

.asb-footer-copy{
  grid-column: 1 / -1;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 0 solid rgba(255,255,255,0.12);
  font-size: 0.82rem;
  opacity: 0.9;
}

.asb-footer-dot{
  margin: 0 6px;
  opacity: 0.75;
}

@media (max-width: 768px){
  .asb-footer-grid{ grid-template-columns: 1fr; }
  .asb-footer-right{ justify-content: flex-start; }
  .asb-footer-badges{ justify-content: flex-start; }
}

/* ===== BANNER (ESQUERDA) ===== */
.banner-votacao--footer{
  position: relative;
  padding: 10px 14px;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  height: 50px;

  background-color: #fff6f7;

  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 1500'%3E%3Cdefs%3E%3Crect stroke='%23ffffff' stroke-width='0.2' width='1' height='1' id='s'/%3E%3Cpattern id='a' width='3' height='3' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(44.7) translate(-977.63 -733.22)'%3E%3Cuse fill='%23fcfcfc' href='%23s' y='2'/%3E%3Cuse fill='%23fcfcfc' href='%23s' x='1' y='2'/%3E%3Cuse fill='%23fafafa' href='%23s' x='2' y='2'/%3E%3Cuse fill='%23fafafa' href='%23s'/%3E%3Cuse fill='%23f7f7f7' href='%23s' x='2'/%3E%3Cuse fill='%23f7f7f7' href='%23s' x='1' y='1'/%3E%3C/pattern%3E%3Cpattern id='b' width='7' height='11' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(44.7) translate(-977.63 -733.22)'%3E%3Cg fill='%23f5f5f5'%3E%3Cuse href='%23s'/%3E%3Cuse href='%23s' y='5' /%3E%3Cuse href='%23s' x='1' y='10'/%3E%3Cuse href='%23s' x='2' y='1'/%3E%3Cuse href='%23s' x='2' y='4'/%3E%3Cuse href='%23s' x='3' y='8'/%3E%3Cuse href='%23s' x='4' y='3'/%3E%3Cuse href='%23s' x='4' y='7'/%3E%3Cuse href='%23s' x='5' y='2'/%3E%3Cuse href='%23s' x='5' y='6'/%3E%3Cuse href='%23s' x='6' y='9'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='h' width='5' height='13' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(44.7) translate(-977.63 -733.22)'%3E%3Cg fill='%23f5f5f5'%3E%3Cuse href='%23s' y='5'/%3E%3Cuse href='%23s' y='8'/%3E%3Cuse href='%23s' x='1' y='1'/%3E%3Cuse href='%23s' x='1' y='9'/%3E%3Cuse href='%23s' x='1' y='12'/%3E%3Cuse href='%23s' x='2'/%3E%3Cuse href='%23s' x='2' y='4'/%3E%3Cuse href='%23s' x='3' y='2'/%3E%3Cuse href='%23s' x='3' y='6'/%3E%3Cuse href='%23s' x='3' y='11'/%3E%3Cuse href='%23s' x='4' y='3'/%3E%3Cuse href='%23s' x='4' y='7'/%3E%3Cuse href='%23s' x='4' y='10'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='c' width='17' height='13' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(44.7) translate(-977.63 -733.22)'%3E%3Cg fill='%23f2f2f2'%3E%3Cuse href='%23s' y='11'/%3E%3Cuse href='%23s' x='2' y='9'/%3E%3Cuse href='%23s' x='5' y='12'/%3E%3Cuse href='%23s' x='9' y='4'/%3E%3Cuse href='%23s' x='12' y='1'/%3E%3Cuse href='%23s' x='16' y='6'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='d' width='19' height='17' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(44.7) translate(-977.63 -733.22)'%3E%3Cg fill='%23ffffff'%3E%3Cuse href='%23s' y='9'/%3E%3Cuse href='%23s' x='16' y='5'/%3E%3Cuse href='%23s' x='14' y='2'/%3E%3Cuse href='%23s' x='11' y='11'/%3E%3Cuse href='%23s' x='6' y='14'/%3E%3C/g%3E%3Cg fill='%23efefef'%3E%3Cuse href='%23s' x='3' y='13'/%3E%3Cuse href='%23s' x='9' y='7'/%3E%3Cuse href='%23s' x='13' y='10'/%3E%3Cuse href='%23s' x='15' y='4'/%3E%3Cuse href='%23s' x='18' y='1'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='e' width='47' height='53' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(44.7) translate(-977.63 -733.22)'%3E%3Cg fill='%23d43f46'%3E%3Cuse href='%23s' x='2' y='5'/%3E%3Cuse href='%23s' x='16' y='38'/%3E%3Cuse href='%23s' x='46' y='42'/%3E%3Cuse href='%23s' x='29' y='20'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='f' width='59' height='71' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(44.7) translate(-977.63 -733.22)'%3E%3Cg fill='%23d43f46'%3E%3Cuse href='%23s' x='33' y='13'/%3E%3Cuse href='%23s' x='27' y='54'/%3E%3Cuse href='%23s' x='55' y='55'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='g' width='139' height='97' patternUnits='userSpaceOnUse' patternTransform='rotate(27 1000 750) scale(44.7) translate(-977.63 -733.22)'%3E%3Cg fill='%23d43f46'%3E%3Cuse href='%23s' x='11' y='8'/%3E%3Cuse href='%23s' x='51' y='13'/%3E%3Cuse href='%23s' x='17' y='73'/%3E%3Cuse href='%23s' x='99' y='57'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23b)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23h)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23c)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23d)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23e)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23f)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23g)' width='100%25' height='100%25'/%3E%3C/svg%3E"),
    linear-gradient(
      135deg,
      rgba(212,63,70,.65) 0%,
      rgba(212,63,70,.38) 40%,
      rgba(255,240,242,.92) 75%,
      rgba(255,248,249,1) 100%
    );

  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: scroll, scroll;

  transition: box-shadow .12s ease, transform .12s ease;
}

.banner-votacao--footer::after{
  content:'';
  position:absolute;
  inset:0;
  background: rgba(255,246,247,.55);
  pointer-events:none;
}

.banner-votacao--footer .banner-votacao-inner{
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.banner-votacao--footer:hover{
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  transform: translateY(-1px);
}

@media (max-width: 640px){
  .banner-votacao--footer{ padding: 10px 12px; }
  .banner-votacao--footer .banner-votacao-inner{
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}/* =========================================================
   SVL INPUT - estados visuais
   ========================================================= */

/* base */
input.svl-input.form-control,
select.svl-input.form-control,
textarea.svl-input.form-control{
  border-width: 1px !important;
  border-style: solid !important;
  border-color: #ced4da !important;
  box-shadow: none !important;
  outline: none !important;
}

/* hover → vermelho */
input.svl-input.form-control:hover,
select.svl-input.form-control:hover,
textarea.svl-input.form-control:hover{
  border-color: #d43f46 !important;
}

/* focus → cinza escuro */
input.svl-input.form-control:focus,
select.svl-input.form-control:focus,
textarea.svl-input.form-control:focus{
  border-color: #5a6368 !important;
  box-shadow: 0 0 0 .2rem rgba(90,99,104,.18) !important;
}

/* ===== Select2 ===== */

/* base */
.select2-container--default .select2-selection--single{
  border-width: 2px !important;
  border-style: solid !important;
  border-color: #ced4da !important;
  box-shadow: none !important;
}

/* hover → vermelho */
.select2-container--default .select2-selection--single:hover{
  border-color: #d43f46 !important;
}

/* aberto/focado → cinza escuro */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open  .select2-selection--single{
  border-color: #d43f46 !important;
  box-shadow: 0 0 0 .2rem rgba(90,99,104,.18) !important;
}
.votar{
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
    border-radius: 0px!important;    
  }
  .votar-group{
    border-radius: 0px!important;       
  }
  .votar input {
    font-family: "Roboto", sans-serif;
    /* font-weight: 500!important; */
    outline: 0!important;
    background: #f2f2f2!important;
    border: 0!important;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px!important;
    border-radius: 0!important;
    height: 40px!important;
    margin-bottom: -5px!important;
  }
  .error{
    margin-left: 0px!important;
    font-size: 11px!important;
  }
  .wizard > .content > .body label {    
    margin-bottom: 0!important;
  }
  label {
    font-weight: 450!important;
  }
  .wizard > .actions > ul {
    width: 100%!important;
  }
  .wizard > .actions > ul > li {
    padding: 5px!important;
    width: 100%!important;
    text-align: center!important;
    text-transform: uppercase!important;
    font-weight: 200!important;
    margin: 0 !important;
  }

.wizard > .actions a,
.wizard > .actions a:hover, 
.wizard > .actions a:active {
  background: #005ca4!important;  
}

.wizard > .content {
  min-height: 110px!important; 
}

/* =========================================================
   FOCO SIMPLES, DISCRETO E INSTITUCIONAL
   ========================================================= */

/* estado normal */
.votar input.form-control,
.votar select.form-control,
.votar textarea.form-control{
  background: #f2f2f2 !important;
  border: 0 !important;
  border-bottom: 2px solid transparent !important;
  box-shadow: none !important;
  transition: background-color .12s ease, border-color .12s ease;
}

/* foco */
.votar input.form-control:focus,
.votar select.form-control:focus,
.votar textarea.form-control:focus{
  background: #ffffff !important;
  border-bottom-color: #005ca4 !important; /* cor institucional */
  outline: none !important;
}

/* erro (mantém seu padrão atual) */
.votar input.error,
.votar select.error,
.votar textarea.error{
  border-bottom-color: #c62828 !important;
}

/* =========================================================
   TIPOGRAFIA – LIMPA, MODERNA E LEGÍVEL
   ========================================================= */

/* BASE */
.votar{
  font-family: "Roboto", Arial, sans-serif;
  color: #1f2933;
}

/* =========================================================
   TÍTULOS (ASSEMBLEIA / ETAPAS)
   ========================================================= */

/* Título principal */
.votar-titulo{
  font-size: 1.45rem;          /* maior, mas elegante */
  font-weight: 700;
  letter-spacing: .2px;
  line-height: 1.3;
  margin-bottom: 12px;
}

/* Mobile: um pouco menor */
@media (max-width: 575px){
  .votar-titulo{
    font-size: 1.25rem;
  }
}

/* =========================================================
   LABELS
   ========================================================= */

.votar label{
  font-size: .85rem;           /* menor que input */
  font-weight: 500;
  letter-spacing: .3px;
  color: #374151;
  margin-bottom: 4px;
  display: block;
  text-transform: none;        /* evita grito */
}

/* =========================================================
   INPUTS / SELECTS / TEXTAREA
   ========================================================= */

.votar input.form-control,
.votar select.form-control,
.votar textarea.form-control{
  font-size: .95rem;           /* leitura confortável */
  font-weight: 400;
  letter-spacing: .2px;
  color: #111827;
}

/* Placeholder mais suave */
.votar input::placeholder,
.votar textarea::placeholder{
  color: #9ca3af;
  font-weight: 400;
}

/* =========================================================
   ERROS (mais legíveis)
   ========================================================= */

label.error{
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .2px;
}

/* =========================================================
   BOTÕES (mantém firme, mas elegante)
   ========================================================= */

.wizard > .actions a,
#btnEsqueci{
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
}