/* /public_html/rotinatalk/assets/css/app.css */

:root{
  --bg0:#070B14;
  --bg1:#0B1223;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --text:#EAF0FF;
  --muted:rgba(234,240,255,.72);
  --line:rgba(255,255,255,.12);
  --brand:#F59E0B; /* laranja elegante */
  --brand2:#FB7185; /* opcional (rosa) */
  --ok:#22C55E;
  --err:#EF4444;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --r:18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(900px 600px at 20% 10%, rgba(245,158,11,.20), transparent 60%),
    radial-gradient(900px 600px at 80% 30%, rgba(59,130,246,.18), transparent 60%),
    radial-gradient(900px 600px at 30% 80%, rgba(34,197,94,.12), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.wrap{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px 16px;
}

.shell{
  width:100%;
  max-width:980px;
  display:grid;
  grid-template-columns: 1.25fr .95fr;
  gap:18px;
}

@media (max-width: 920px){
  .shell{ grid-template-columns:1fr; }
}

.brandCard{
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: var(--r);
  padding:22px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}

.brandTop{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}
.logo{
  width:42px;height:42px;
  display:grid;place-items:center;
  border-radius:14px;
  background:rgba(245,158,11,.16);
  border:1px solid rgba(245,158,11,.35);
  color: #FFD9A3;
  font-weight:800;
}
.brandName{ font-weight:800; letter-spacing:.2px; }
.brandTag{ font-size:13px; color:var(--muted); margin-top:2px; }

.hTitle{
  font-size:42px;
  line-height:1.1;
  margin:8px 0 10px;
}
.hSub{
  color:var(--muted);
  font-size:15px;
  margin:0 0 14px;
}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.badge{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--muted);
}

.formCard{
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  border-radius: var(--r);
  padding:22px;
  box-shadow: var(--shadow);
}

.formTitle{
  font-weight:800;
  margin:0 0 6px;
  font-size:20px;
}
.formSub{
  color:var(--muted);
  margin:0 0 14px;
  font-size:13px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin:12px 0;
}
label{
  font-size:12px;
  color:var(--muted);
}
input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
input:focus{
  border-color: rgba(245,158,11,.45);
  box-shadow: 0 0 0 4px rgba(245,158,11,.14);
}

.actions{
  display:flex;
  gap:10px;
  align-items:center;
  margin-top:14px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(245,158,11,.35);
  background: linear-gradient(180deg, rgba(245,158,11,.95), rgba(245,158,11,.78));
  color:#10131B;
  font-weight:800;
  cursor:pointer;
  transition: transform .08s ease, filter .15s ease;
}
.btn:hover{ filter:brightness(1.02); }
.btn:active{ transform: translateY(1px); }

.btnGhost{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-weight:700;
}

.alert{
  border-radius:14px;
  padding:10px 12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  margin:10px 0 0;
  font-size:13px;
}
.alert.ok{ border-color: rgba(34,197,94,.35); background: rgba(34,197,94,.08); }
.alert.err{ border-color: rgba(239,68,68,.35); background: rgba(239,68,68,.08); }

.smallLinks{
  margin-top:12px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  color:var(--muted);
  font-size:12px;
}

.hr{
  height:1px;
  background:rgba(255,255,255,.10);
  margin:16px 0;
}
