:root{
  --bg:#f8fafc;
  --surface:#ffffff;
  --primary:#2563eb;
  --text:#0f172a;
  --muted:#64748b;
  --border:#e5e7eb;
  --radius:14px;
}

*{box-sizing:border-box;margin:0;padding:0}

body{
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  font-size: .95rem;
}

a{text-decoration:none;color:inherit}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
}

/* HEADER */
header{
  background:#fff;
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
}

.logo{
  font-weight:800;
  font-size:1.4rem;
  color:var(--primary);
}

nav{position:relative}

.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  padding:6px 10px;
  border-radius:8px;
}

.nav-list{
  list-style:none;
  display:flex;
  gap:18px;
  align-items:center;
}

.nav-list a{
  color:var(--muted);
  font-size:.9rem;
}

.nav-list .cta{
  padding:6px 12px;
  border:1px solid var(--border);
  border-radius:999px;
}

.nav-list .login{
  color:var(--primary);
  font-weight:600;
}

@media(max-width:800px){
  .nav-toggle{display:block}
  .nav-list{
    display:none;
    position:absolute;
    right:0;
    top:44px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    padding:14px;
    flex-direction:column;
    gap:14px;
    min-width:220px;
    align-items:flex-start;
  }
  .nav-list.show{display:flex}
}

/* FOOTER */
.site-footer{
  background:#f1f5f9;
  border-top:1px solid var(--border);
  margin-top:64px;
}

.footer-grid{
  display:grid;
  gap:32px;
  padding:36px 0;
}

@media(min-width:900px){
  .footer-grid{
    grid-template-columns:1fr 1fr 1fr;
  }
}
@media(max-width:1200px){
  .footer-grid{
    margin-left: 25px;
	margin-right: 25px;
  }
}

.footer-box h2{
  font-size:.95rem;
  margin-bottom:12px;
}

.footer-box ul{
  list-style:none;
  padding:0;
}

.footer-box ul li{
  margin-bottom:8px;
}

.footer-box a{
  font-size:.85rem;
  color:var(--muted);
}

.footer-box a:hover{
  color:var(--primary);
}

.footer-box p{
  font-size:.85rem;
  color:var(--muted);
  line-height:1.6;
}

.footer-note{
  margin-top:10px;
}

.footer-bottom{
  border-top:1px solid var(--border);
  padding:12px 0;
  font-size:.8rem;
  color:var(--muted);
}
.footer-bottom-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.footer-socials{
  display:flex;
  gap:14px;
}

/* Mobile */
@media(max-width:600px){
  .footer-bottom-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}
/* REGISTER – STACKED */
.register-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 25px;
	margin-bottom: 32px;
}

.register-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:32px;
  width:100%;
}

.register-card h2{
  font-size:1.5rem;
  margin-bottom:8px;
}

.register-subtitle{
  font-size:.9rem;
  color:var(--muted);
  margin-bottom:24px;
}

.register-form{
  display:grid;
  gap:16px;
}

.register-form label{
  font-size:.85rem;
  color:var(--muted);
  flex-direction:column;
  gap:6px;
}

.register-form input{
  padding:10px 12px;
  border-radius:10px;
  border:1px solid var(--border);
  font-size:.9rem;
  width:100%;
  margin-top:7px
}

.terms{
  font-size:.8rem;
  line-height:1.5;
}

.terms input{
  margin-right:6px;
}

.terms a{
  color:var(--primary);
  font-weight:500;
}

.register-form button{
  margin-top:8px;
  padding:12px;
  background:var(--primary);
  color:#fff;
  border:none;
  border-radius:10px;
  font-weight:600;
  cursor:pointer;
}

.register-form button:hover{
  opacity:.95;
}

.register-footer{
  margin-top:20px;
  font-size:.85rem;
  text-align:center;
  color:var(--muted);
}

.register-footer a{
  color:var(--primary);
  font-weight:600;
  margin-left:4px;
}