:root{
  --blue:#0b3aa4;
  --text:#0f172a;
  --muted:#64748b;
  --line:#e5e7eb;
  --shadow: 0 14px 40px rgba(2,6,23,.10);
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  background:#fff;
  color:var(--text);
}

/* Top */
.top{
  position:fixed;
  top:0; left:0; right:0;
  height:56px;
  background:#fff;
}
.wrap{max-width:1100px; margin:0 auto; padding:0 18px}
.top__inner{height:56px; display:flex; align-items:center; justify-content:flex-end}

/* Google-like top links */
.tabs{display:flex; gap:14px; align-items:center}
.tabs--google{gap:16px}
.tab{ text-decoration:none; }
.tab--link{
  color:#475569;
  font-weight:600;
  font-size:14px;
  padding:6px 2px;
  border-radius:8px;
}
.tab--link:hover{color:var(--blue)}
.tab--link:focus{outline:2px solid rgba(11,58,164,.25); outline-offset:3px}

/* Center like Google */
.main{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:80px 18px 18px;
}
.center{
  width:min(760px, 100%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
  transform: translateY(-28px);
}
.logo{width:min(520px, 92%); height:auto}

.search{
  width:100%;
  display:flex;
  gap:10px;
  align-items:center;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  box-shadow: var(--shadow);
}
.search input{
  flex:1;
  border:none;
  outline:none;
  font-size:16px;
  padding:6px 4px;
}

.btn{
  border:none;
  background:var(--blue);
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  cursor:pointer;
  font-weight:700;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn:hover{filter:brightness(.96)}
.btn--ghost{
  background:#fff;
  color:var(--blue);
  border:1px solid rgba(11,58,164,.28);
}

.tiny{font-size:13px; color:var(--muted); min-height:18px; text-align:center}

/* Tagline */
.tagline{
  margin-top: 14px;
  text-align: center;
  max-width: 720px;
  padding: 0 10px;
}
.tagline__title{
  font-weight: 800;
  font-size: 18px;
  line-height: 1.25;
  color: var(--text);
}
.tagline__sub{
  margin-top: 6px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
  color: var(--muted);
  letter-spacing: .15px;
}

/* Content pages */
.page{ padding:90px 0 40px; }
.page__inner{ max-width: 900px; margin: 0 auto; }
.h1{ margin: 0 0 10px; font-size: 28px; }
.lead{ margin: 0 0 18px; color: var(--muted); line-height: 1.65; }
.panel{
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
  background: #fff;
}
.form{max-width: 760px}
.field{margin: 12px 0}
label{display:block; font-weight:700; font-size:13px; color:var(--muted); margin-bottom:6px}
select, textarea, input[type="text"], input[type="email"], input[type="password"], input[type="file"]{
  width:100%;
  border:1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 14px;
  outline:none;
}
textarea{min-height: 120px; resize: vertical}
.hint{font-size:12.5px; color:var(--muted); margin-top:6px; line-height:1.5}
.grid2{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.actionsRow{display:flex; gap:10px; margin-top:14px; align-items:center}
.notice{
  margin-top:14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  color: #334155;
  min-height: 20px;
}
.tiny2{ margin-top: 14px; color: var(--muted); font-size: 13px; line-height: 1.6; }
@media (max-width: 860px){
  .grid2{grid-template-columns: 1fr}
  .actionsRow{flex-direction:column; align-items:stretch}
}

