/* ======================
   AUTH LOGIN
   ====================== */



/* Wrapper */
.login-wrapper{
  max-width: var(--max-w, 1180px);
  margin:40px auto;
  display:flex;
  gap:28px;
  flex-wrap:wrap;
  justify-content:center;
  align-items:stretch;
  padding:0 16px;
}

/* Card */
.login-card{
  flex:1 1 420px;
  display:flex;
  flex-direction:column;
  background:var(--ll-bg-card, #fff);
  border:1px solid var(--ll-border, rgba(15,23,42,.12));
  border-radius:18px;
  padding:32px 28px;
  box-shadow:0 18px 40px rgba(15,23,42,.08);
  transition:transform .2s ease, box-shadow .2s ease;
}
.login-card:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 48px rgba(15,23,42,.10);
}

/* Cabeçalho */
.login-head h1,
.login-head h2{
  margin:0 0 6px;
  font-weight:900;
  color:var(--ll-primary);
  font-size:1.5rem;
  text-align: center;
}
.login-head p{
  margin:0 0 18px;
  color:var(--ll-text-muted);
  font-size:.95rem;
  text-align: center;
}

/* Campos */
.field{
  display:flex;
  flex-direction:column;
  margin-bottom:18px;
}
.field span{
  margin-bottom:6px;
  font-weight:800;
  color:var(--ll-text);
  font-size:.95rem;
}
.field input{
  padding:14px 16px;
  border-radius:14px;
  border:1px solid var(--ll-border);
  outline:none;
  font-size:1rem;
  background:rgba(15,23,42,.04);
  color:var(--ll-text);
  transition:border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input:focus,
.phone-login input#phone-id:focus{
  border-color: color-mix(in srgb, var(--ll-primary) 60%, var(--ll-border));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ll-primary) 18%, transparent);
  background:#fff;
}

/* Toggle password */
.has-toggle{position:relative;}
.pwd-toggle{
  position:absolute;
  right:14px;
  bottom:14px;
  background:transparent;
  border:none;
  cursor:pointer;
  font-size:18px;
  color:var(--ll-text-muted);
}
.pwd-toggle:hover{color:var(--ll-primary);}

/* Lembrar / esqueci */
.login-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  margin-top:6px;
  gap:10px;
}
.chk{
  display:flex;
  align-items:center;
  gap:6px;
  color:var(--ll-text-muted);
  font-size:.9rem;
}
.chk input{ accent-color: var(--ll-primary); }

.link-muted{
  color:var(--ll-text-muted);
  font-size:.9rem;
  text-decoration:none;
}
.link-muted:hover{ color:var(--ll-primary); }

/* ======================
   BOTÕES (hierarquia)
   ====================== */

/* AÇÃO PRINCIPAL */
/* ======================
   BOTÕES (hierarquia corrigida)
   ====================== */

/* base */
.btn-submit,
.btn-create-account{
  border:none;
  border-radius:14px;
  padding:15px;
  font-weight:900;
  font-size:1rem;
  cursor:pointer;
  width:100%;
  transition:transform .1s ease, background .15s ease, color .15s ease, box-shadow .15s ease, border-color .15s ease;
}

/* AÇÃO PRINCIPAL — Entrar */
.btn-submit{
  background:var(--ll-primary);
  color:#fff;
  margin-top:20px;
  box-shadow:0 12px 26px rgba(15,23,42,.18);
}
.btn-submit:hover{
  background:var(--ll-primary-dark);
  transform:translateY(-1px);
}

/* SECUNDÁRIO — Enviar código */
.btn-submit.btn-submit--secondary{
  background:transparent !important;
  color:var(--ll-primary) !important;
  border:2px solid var(--ll-primary) !important;
  box-shadow:none !important;
}
.btn-submit.btn-submit--secondary:hover{
  background:var(--ll-primary) !important;
  color:#fff !important;
  transform:translateY(-1px);
}

/* Criar conta */
.btn-create-account{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 16px;
  background:linear-gradient(135deg, var(--ll-accent), var(--ll-accent-dark)) !important;
  color:#1b1b1b !important;
  text-decoration:none;
  border-radius:14px;
  font-weight:800;
  font-size:14px;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 10px 24px rgba(15,23,42,.10);
}
.btn-create-account:hover{
  filter:brightness(.98);
  transform:translateY(-1px);
}
/* Telefone */
.phone-login input#phone-id{
  width:100%;
  padding:14px 16px;
  font-size:1rem;
  border-radius:14px;
  border:1px solid var(--ll-border);
  outline:none;
  background:rgba(15,23,42,.04);
  transition:border-color .15s ease, box-shadow .15s ease;
}
.phone-login input#phone-id:focus{
  border-color:rgba(15,61,76,.55);
  box-shadow:0 0 0 3px rgba(15,61,76,.14);
  background:#fff;
}

.phone-login details summary{
  cursor:pointer;
  font-size:.9rem;
  color:var(--ll-primary);
  margin-top:12px;
}
.phone-login details small{
  color:var(--ll-text-muted);
  font-size:.85rem;
}

/* Responsivo */
@media (max-width:920px){
  .login-wrapper{
    flex-direction:column;
    gap:22px;
  }
}

.phone-help{
  display:block;
  margin-top:8px;
  font-size:12px;
  line-height:1.4;
  color:var(--ll-text-muted);
}

.phone-code-link{
  margin-top:14px;
}

.phone-code-link .link-muted{
  font-weight:700;
}

.phone-help{
  display:block;
  margin-top:8px;
  font-size:12px;
  line-height:1.45;
  color:var(--ll-text-muted);
}

.phone-help-note{
  margin-top:6px;
}

.phone-code-link{
  margin-top:14px;
}

.phone-code-link .link-muted{
  font-weight:700;
}

.phone-register-note{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid var(--ll-border);
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:13px;
  color:var(--ll-text-muted);
}

.phone-register-link{
  font-weight:700;
  text-decoration:none;
}

.phone-register-link:hover{
  text-decoration:underline;
}


/* =========================================================
   REGISTER — suave, limpo, alinhado ao theme
   Mesmas classes
   ========================================================= */

.auth-wrap-auth{
  max-width: 800px;
  width: 100%;
  margin: 52px auto;
  padding: 0 16px;
}

.auth-card{
  background: var(--ll-surface);
  border: 1px solid var(--ll-border);
  border-radius: 20px;
  box-shadow: var(--ll-shadow-sm);
  overflow: hidden;
}

.auth-head{
  padding: 30px 28px 20px;
  border-bottom: 1px solid var(--ll-border);
  text-align: center;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--ll-primary-soft) 18%, #fff),
    var(--ll-surface)
  );
}

.auth-head h1{
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  color: var(--ll-text);
  font-weight: 900;
  letter-spacing: -.02em;
  text-align:center;
}

.auth-head p{
  margin: 10px auto 0;
  max-width: 62ch;
  color: var(--ll-muted);
  font-size: 14px;
  line-height: 1.55;
  text-align:center;
}

.auth-form{
  padding: 22px 28px 28px;
  display: grid;
  gap: 16px;
}

/* se houver grupos lado a lado no HTML */
.auth-form .row,
.auth-form .auth-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field span{
  display: block;
  font-weight: 800;
  font-size: 12.5px;
  margin-bottom: 7px;
  color: var(--ll-text);
  letter-spacing: .01em;
}

.auth-card .field input{
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid var(--ll-border-strong);
  outline: none;
  font-size: 14px;
  background: color-mix(in srgb, var(--ll-bg) 45%, #fff);
  background-color: color-mix(in srgb, var(--ll-bg) 45%, #fff);
  color: var(--ll-text);
  caret-color: var(--ll-text);
  -webkit-text-fill-color: var(--ll-text);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .12s ease;
}

.auth-card .field input::placeholder{
  color: var(--ll-muted);
}

.auth-card .field input:focus{
  border-color: color-mix(in srgb, var(--ll-primary) 55%, var(--ll-border));
  background: #fff;
  box-shadow: var(--ll-focus);
}

/* autofill */
.auth-card input:-webkit-autofill,
.auth-card input:-webkit-autofill:hover,
.auth-card input:-webkit-autofill:focus{
  -webkit-text-fill-color: var(--ll-text);
  box-shadow: 0 0 0 1000px #fff inset;
  transition: background-color 9999s ease-in-out 0s;
}

/* hint */
.hint{
  margin-top: 6px;
  font-size: 12px;
  color: var(--ll-muted);
  line-height: 1.45;
}

.auth-actions{
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

/* botões */
.btn-main{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid color-mix(in srgb, var(--ll-primary) 35%, var(--ll-border));
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(
    180deg,
    var(--ll-primary),
    var(--ll-primary-dark)
  );
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(15,23,42,.12);
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

.btn-main:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 16px 28px rgba(15,23,42,.16);
}

.btn-link{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--ll-border-strong);
  color: var(--ll-text);
  background: #fff;
  transition: .2s ease;
}

.btn-link:hover{
  background: color-mix(in srgb, var(--ll-primary-soft) 30%, #fff);
  border-color: color-mix(in srgb, var(--ll-primary) 40%, var(--ll-border));
}

/* mobile */
@media (max-width: 760px){
  .auth-wrap{
    margin: 36px auto;
  }

  .auth-head{
    padding: 24px 20px 18px;
  }

  .auth-head h1{
    font-size: 24px;
  }

  .auth-form{
    padding: 18px 20px 22px;
  }

  .auth-form .row,
  .auth-form .auth-row{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px){
  .auth-wrap{
    margin: 28px auto;
    padding: 0 12px;
  }

  .auth-head{
    padding: 22px 16px 16px;
  }

  .auth-form{
    padding: 16px 16px 20px;
  }
}




/* =========================================
   REGISTER — override de largura real
   ========================================= */

main.page-wrap{
  width: 100%;
}

main.page-wrap .auth-wrap{
  width: min(700px, calc(100vw - 32px)) !important;
  max-width: min(700px, calc(100vw - 32px)) !important;
  margin: 52px auto !important;
  padding: 0 16px !important;
}

main.page-wrap .auth-card{
  width: 100% !important;
  max-width: none !important;
}

main.page-wrap .auth-form{
  width: 100% !important;
  max-width: none !important;
}

main.page-wrap form{
  width: 100% !important;
  max-width: none !important;
}

main.page-wrap .field{
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
}

main.page-wrap .field input{
  width: 100% !important;
  max-width: none !important;
}

/* se houver algum container global a apertar */
main.page-wrap .container,
main.page-wrap.container{
  max-width: none !important;
  width: 100% !important;
}

/* mobile */
@media (max-width: 840px){
  main.page-wrap .auth-wrap{
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    margin: 28px auto !important;
    padding: 0 12px !important;
  }
}
/* =========================================
   AUTH (recover_phone / verify) — LocalLink
   Ajustado ao theme + botões centralizados
   ========================================= */

/* Garante que o footer fica no fundo */
/* =========================
   FLASH / ALERTAS
========================= */

.flash-message{
  position: relative;

  width: min(720px, calc(100% - 32px));

  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 18px;
  margin-bottom: 14px;

  padding: 15px 18px;

  border-radius: 16px;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;

  box-shadow: 0 12px 28px rgba(15,23,42,.08);

  transition:
    opacity .35s ease,
    transform .35s ease;

  z-index: 20;
}

/* sucesso */
.flash-message.is-success{
  background: color-mix(in srgb, #16a34a 12%, #fff);
  border: 1px solid color-mix(in srgb, #16a34a 30%, transparent);
  color: #166534;
}

/* erro */
.flash-message.is-error{
  background: color-mix(in srgb, #dc2626 10%, #fff);
  border: 1px solid color-mix(in srgb, #dc2626 30%, transparent);
  color: #991b1b;
}

/* info */
.flash-message.is-info{
  background: color-mix(in srgb, #2563eb 10%, #fff);
  border: 1px solid color-mix(in srgb, #2563eb 24%, transparent);
  color: #1d4ed8;
}

/* warning */
.flash-message.is-warning{
  background: color-mix(in srgb, #f59e0b 12%, #fff);
  border: 1px solid color-mix(in srgb, #f59e0b 28%, transparent);
  color: #92400e;
}

/* animação saída */
.flash-message.is-hiding{
  opacity: 0;
  transform: translateY(-6px);
}

/* mobile */
@media(max-width:640px){

  .flash-message{
    width: calc(100% - 20px);

    padding: 14px 14px;

    font-size: 13px;
    border-radius: 14px;
  }
}


/* Container */
.auth-wrap{
  width:100%;
  max-width:520px;
  margin:0 auto;
}

/* Card */
.auth-card{
  background:var(--ll-surface);
  border:1px solid var(--ll-border);
  border-radius:18px;
  padding:26px 24px;
  box-shadow:var(--ll-shadow);
}

/* Título */
.auth-card h1{
  margin:0 0 8px;
  font-size:18px;
  font-weight:800;
  text-align:center;
  color:var(--ll-text);
}

/* Sub */
.auth-card p{
  margin:0 0 18px;
  font-size:14px;
  text-align:center;
  color:var(--ll-muted);
}

/* Labels */
.auth-card label{
  display:block;
  margin:12px 0 6px;
  font-weight:800;
  font-size:13px;
  color:var(--ll-text);
}

/* Inputs */
.auth-card input{
  width:100%;
  padding:13px 14px;
  border-radius:14px;
  border:1px solid var(--ll-border-strong);
  background:var(--ll-bg);
  color:var(--ll-text);
  font-size:14px;
  outline:none;
  transition:border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.auth-card input:focus{
  background:#fff;
  border-color:var(--ll-primary);
  box-shadow:var(--ll-focus);
}

/* BOTÕES CENTRALIZADOS */
.auth-actions{
  margin-top:18px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

/* Botão principal */
.auth-card .btn-primary,
.auth-card button[type="submit"]{
  min-width:160px;
  padding:12px 18px;
  border-radius:14px;
  border:1px solid var(--ll-primary);
  background:linear-gradient(
    180deg,
    var(--ll-primary),
    var(--ll-primary-dark)
  );
  color:#fff;
  font-weight:900;
  cursor:pointer;
  transition:transform .12s ease, filter .12s ease;
}

.auth-card .btn-primary:hover,
.auth-card button[type="submit"]:hover{
  transform:translateY(-1px);
  filter:brightness(1.03);
}

/* Botão secundário (se existir) */
.auth-card .btn-ghost{
  min-width:160px;
  padding:12px 18px;
  border-radius:14px;
  border:1px solid var(--ll-border);
  background:var(--ll-surface);
  color:var(--ll-text);
  font-weight:800;
}

.auth-card .btn-ghost:hover{
  border-color:var(--ll-primary);
  color:var(--ll-primary);
}

/* Responsivo */
@media (max-width:480px){
  main.page-wrap{
    padding:28px 14px;
  }

  .auth-card{
    padding:22px 18px;
  }

  .auth-actions{
    flex-direction:column;
  }

  .auth-card .btn-primary,
  .auth-card .btn-ghost{
    width:100%;
  }
}

.auth-filler{
  margin-top: 20px;
  height: 60px; /* ajusta se quiseres mais ou menos */
  border-radius: 20px;
  border: 1px solid var(--ll-border);
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--ll-primary-soft) 12%, #fff),
      var(--ll-surface)
    );
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
}





/* RESET LINK PAGE */

.auth-reset-wrap{
  max-width: 820px;
  margin: 60px auto;
  padding: 0 18px;
}

.auth-reset-card{
  background: var(--ll-surface);
  border: 1px solid var(--ll-border);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: var(--ll-shadow);
}

.auth-reset-head{
  text-align: center;
  margin-bottom: 22px;
}

.auth-reset-head h1{
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 900;
  color: var(--ll-text);
  text-align:center;
}

.auth-reset-sub{
  margin: 0;
  font-size: 14px;
  color: var(--ll-muted);
  text-align:center;
}

.auth-reset-form{
  display: grid;
  gap: 16px;
}

.auth-reset-form label span{
  display:block;
  font-size:13px;
  font-weight:700;
  margin-bottom:6px;
  color: var(--ll-text);
}

.auth-reset-form input{
  width:100%;
  padding:13px 14px;
  border-radius:12px;
  border:1px solid var(--ll-border-strong);
  background: var(--ll-bg);
  color: var(--ll-text);
  outline:none;
  transition:.2s;
}

.auth-reset-form input:focus{
  border-color: var(--ll-primary);
  background:#fff;
  box-shadow: var(--ll-focus);
}

.auth-reset-btn{
  margin-top:8px;
  padding:14px;
  border-radius:14px;
  border:0;
  font-weight:900;
  cursor:pointer;
  background: linear-gradient(180deg,var(--ll-primary),var(--ll-primary-dark));
  color:#fff;
  transition:.2s;
}

.auth-reset-btn:hover{
  transform: translateY(-1px);
}

/* Alerts */

.auth-reset-alert{
  margin-bottom:18px;
  padding:12px 14px;
  border-radius:12px;
  text-align:center;
  font-weight:700;
  font-size:13px;
}

.auth-reset-alert.error{
  background: rgba(239,68,68,.12);
  border:1px solid rgba(239,68,68,.35);
  color:#b91c1c;
}

.auth-reset-alert.success{
  background: rgba(16,185,129,.12);
  border:1px solid rgba(16,185,129,.35);
  color:#065f46;
}

.auth-back-link {
    margin-top: 20px;
    text-align: center;
}

.auth-back-link a {
    font-size: 14px;
    color: #4f6f52;
    text-decoration: none;
    font-weight: 500;
}

.auth-back-link a:hover {
    text-decoration: underline;
}





/* RESET PAGE FORGOT */
  .auth-wrap .ll-flash {
    width: min(720px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 12px 16px;
    border-radius: 14px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
    transition: opacity .35s ease, transform .35s ease;
  }

  .auth-wrap .ll-flash.is-ok {
    background: rgba(16, 185, 129, .10);
    border: 1px solid rgba(16, 185, 129, .28);
    color: #166534;
  }

  .auth-wrap .ll-flash.is-err {
    background: rgba(239, 68, 68, .10);
    border: 1px solid rgba(239, 68, 68, .28);
    color: #991b1b;
  }

  .auth-wrap .flash-hide {
    opacity: 0;
    transform: translateY(-6px);
  }




  @media (max-width: 768px){
  .login-wrapper{
    margin: 24px auto 70px !important;
  }

  .flash-message{
    margin: 4px auto 8px !important;
  }
}



.login-extra{
  width: min(960px, calc(100% - 32px));
  min-height: 220px; /* isto é o que vai empurrar o footer */
  margin: 14px auto 80px;
  padding: 46px 32px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(62,89,66,.09), rgba(255,255,255,.97));
  border: 1px solid var(--ll-border);
  box-shadow: 0 14px 32px rgba(15,23,42,.07);
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-extra h2{
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 900;
  color: var(--ll-text);
}

.login-extra p{
  max-width: 780px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ll-muted);
  font-weight: 600;
}

@media (max-width: 768px){
  .login-extra{
    margin: 8px auto 44px;
    padding: 24px 18px;
  }

  .login-extra h2{
    font-size: 18px;
  }

  .login-extra p{
    font-size: 14px;
  }
}




.auth-wrap-tall{
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-wrap-tall .auth-card{
  margin-bottom: 80px;
}

@media (max-width: 768px){
  .auth-wrap-tall{
    min-height: 62vh;
  }

  .auth-wrap-tall .auth-card{
    margin-bottom: 50px;
  }
}




.auth-card a[href*="recover_phone"]{
  display: flex;
  justify-content: center;
  margin-top: 10px;
}





/* REGISTER — forçar centralização do título e subtítulo */
.auth-card .auth-head,
.auth-card .auth-head h1,
.auth-card .auth-head p,
.auth-card h1,
.auth-card > p{
  text-align: center !important;
}

.auth-card .auth-head{
  display: block !important;
  width: 100% !important;
}

.auth-card .auth-head h1,
.auth-card h1{
  margin-left: auto !important;
  margin-right: auto !important;
}

.auth-card .auth-head p,
.auth-card > p{
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 680px !important;
}






/* ===== COMPLETAR PERFIL ===== */

.auth-wrap{
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.auth-card{
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 10px 30px rgba(2,6,23,0.08);
}

.auth-head h1{
  font-size: 22px;
  margin-bottom: 6px;
  color: #0f172a;
}

.auth-head p{
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

.auth-form{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-form label{
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.auth-form input{
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,0.35);
  padding: 0 14px;
  font-size: 14px;
  transition: all .2s ease;
}

.auth-form input:focus{
  outline: none;
  border-color: #3e5942;
  box-shadow: 0 0 0 3px rgba(62,89,66,0.15);
}

.btn-main{
  height: 50px;
  border-radius: 14px;
  border: 0;
  background: #3e5942;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all .2s ease;
}

.btn-main:hover{
  background: #2f4633;
}



/* =========================
   FIX LOGIN MOBILE
========================= */

@media (max-width: 768px){

  .login-wrapper{
    width: 100% !important;
    max-width: 100% !important;

    margin: 38px auto 70px !important;
    padding: 0 18px !important;

    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
  }

  .login-card{
    width: 100% !important;
    max-width: 430px !important;
    flex: 0 1 430px !important;

    margin: 0 auto !important;
    padding: 28px 24px !important;

    border-radius: 20px !important;
  }

  .login-head,
  .login-head h1,
  .login-head h2,
  .login-head p{
    text-align: center !important;
  }

  .login-head h1,
  .login-head h2{
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .login-head p{
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .btn-submit{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;
    width: 100% !important;
  }
}



/* =========================
   FLASH PORINATIVIDADE
========================= */

.flash-message{
  width:min(920px, 92%);
  margin:18px auto 0;
  padding:12px 15px;
  border-radius:14px;

  display:flex;
  align-items:center;
  gap:10px;

  background:#fff7ed;
  color:#9a3412;
  border:1px solid #fed7aa;

  font-size:14px;
  font-weight:700;

  box-shadow:0 8px 20px rgba(15,23,42,.06);
  transition:opacity .35s ease, transform .35s ease;
}

.flash-message.is-hiding{
  opacity:0;
  transform:translateY(-6px);
}

.flash-message i{
  font-size:15px;
  flex-shrink:0;
}
  






