:root{
  --primary:#145E95;
  --primary-dark:#0F4F7D;
  --orange:#f97316;

  --bg1:#f8fbff;
  --bg2:#eef2f7;

  --line:#e2e8f0;
  --muted:#64748b;
  --text:#0f172a;

  --radius:18px;
  --shadow:0 25px 60px rgba(2,8,23,.12);

  --font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Arial;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:var(--font);
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:24px;
  background:
    radial-gradient(900px 600px at 12% 12%, rgba(20,94,149,.14), transparent 55%),
    radial-gradient(900px 700px at 92% 20%, rgba(249,115,22,.10), transparent 60%),
    linear-gradient(180deg,var(--bg1),var(--bg2));
  color:var(--text);
}

/* GRID LOGIN */
.wrap{
  width:min(1040px,100%);
  display:grid;
  grid-template-columns: 1.05fr 1fr; /* instruções esquerda / login direita */
  gap:22px;
  align-items:stretch;
}
@media (max-width:900px){
  .wrap{ grid-template-columns:1fr; }
}

/* CARDS */
.brand, .card{
  background:rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:34px;
  position:relative;
  overflow:hidden;
}
.brand:before, .card:before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  filter:blur(18px);
  opacity:.9;
  background:
    radial-gradient(600px 260px at 20% 10%, rgba(20,94,149,.12), transparent 60%),
    radial-gradient(520px 260px at 90% 0%, rgba(249,115,22,.10), transparent 55%),
    linear-gradient(120deg, rgba(255,255,255,.30), transparent 55%);
}
.brand > *, .card > *{ position:relative; }

/* BRAND (ESQUERDA) */
.brand{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  gap:10px;
}

.logoCliente{
  max-height:170px;     /* controla logo */
  max-width:280px;
  width:auto;
  height:auto;
  object-fit:contain;
  margin-bottom:8px;
  filter: drop-shadow(0 10px 22px rgba(2,8,23,.10));
}

.brand h1{
  margin:0;
  font-size:clamp(22px,2.4vw,26px);
  letter-spacing:-.02em;
  color:var(--primary);
}

.brand p{
  margin:0;
  max-width:420px;
  color:var(--muted);
  font-size:15px;
  line-height:1.55;
}

.divider{
  width:86px;
  height:4px;
  border-radius:999px;
  margin:8px 0 4px;
  background: linear-gradient(90deg, rgba(249,115,22,.92), rgba(249,115,22,.15));
}

.pill{
  margin-top:10px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(226,232,240,.9);
  background: rgba(255,255,255,.70);
  color: rgba(15,23,42,.78);
  font-size:12.8px;
  font-weight:700;
  box-shadow: 0 12px 30px rgba(2,8,23,.06);
}
.dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background: rgba(249,115,22,.95);
  box-shadow: 0 0 0 4px rgba(249,115,22,.14);
}

/* CARD LOGIN (DIREITA) */
.card{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* ALERTAS */
.notice{
  border-radius:12px;
  padding:10px 12px;
  font-size:13px;
  margin:10px 0 14px;
  border:1px solid transparent;
}
.notice.ok{
  background: rgba(220,252,231,.70);
  border-color: rgba(34,197,94,.22);
  color:#14532d;
}
.notice.err{
  background: rgba(254,226,226,.75);
  border-color: rgba(239,68,68,.25);
  color:#7f1d1d;
}

/* FORM */
.field{ margin-bottom:14px; }
label{
  display:block;
  font-size:12px;
  font-weight:800;
  color: rgba(15,23,42,.70);
  margin-bottom:6px;
}

/* AQUI É A CORREÇÃO DO SEU PROBLEMA (SVG GIGANTE) */
.input{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(226,232,240,.95);
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 22px rgba(2,8,23,.04);
}
.input svg{
  width:18px;          /* trava o tamanho do ícone */
  height:18px;
  flex: 0 0 auto;
  color: rgba(15,23,42,.45);
}
.input input{
  border:0;
  outline:none;
  background:transparent;
  padding:0;
  width:100%;
  font-size:14px;
  color: var(--text);
}
.input:focus-within{
  border-color: rgba(20,94,149,.38);
  box-shadow: 0 0 0 4px rgba(20,94,149,.10), 0 10px 22px rgba(2,8,23,.04);
}

.toggle{
  border:0;
  background:transparent;
  padding:6px 8px;
  border-radius:10px;
  cursor:pointer;
  font-size:12px;
  font-weight:900;
  color: var(--muted);
  white-space:nowrap;
}
.toggle:hover{ background: rgba(15,23,42,.06); }

.row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin:10px 0 14px;
}

.check{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  color: rgba(15,23,42,.70);
  font-size:12.5px;
}

.link{
  color: var(--primary);
  text-decoration:none;
  font-weight:900;
  font-size:12.5px;
}
.link:hover{ text-decoration:underline; }

.btn{
  width:100%;
  border:0;
  border-radius:14px;
  padding:12px 14px;
  background:linear-gradient(135deg,var(--primary),var(--primary-dark));
  color:#fff;
  font-weight:900;
  cursor:pointer;
  box-shadow: 0 16px 45px rgba(20,94,149,.20);
  transition:.15s ease;
}
.btn:hover{ transform:translateY(-1px); }
.btn:active{ transform:translateY(0); }

/* POWERED */
.powered{
  margin-top:34px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-size:12px;
  color: var(--muted);
  text-transform:uppercase;
  letter-spacing:.08em;
}
.powered span{ opacity:.7; }
.powered img{
  height:50px;
  width:auto;
  object-fit:contain;
  filter: drop-shadow(0 10px 22px rgba(2,8,23,.12));
}

/* Header do bloco de login */
.loginHeader{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px;
}

.loginHeader h2{
  margin:0;
  font-size:22px;
  font-weight:800;
  color:#0f172a;
}

/* Badge Seguro */
.securityBadge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(226,232,240,.9);
  background:rgba(255,255,255,.75);
  font-size:12px;
  font-weight:800;
  color:#334155;
  box-shadow:0 8px 24px rgba(0,0,0,.05);
}

.securityBadge .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#10b981;
  box-shadow:0 0 0 4px rgba(16,185,129,.15);
}
