/* ===========================================================
   under-construction.css — pagina-specifiek
   Losse, op zichzelf staande pagina (geen header/footer-include,
   dit moet werken vóórdat iemand toegang heeft tot de rest van de site).
   =========================================================== */

body.uc-body{
  background:
    radial-gradient(ellipse 900px 600px at 80% -10%, rgba(245,166,35,0.14), transparent),
    var(--navy);
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.uc-shell{
  width:100%;
  max-width:440px;
}

.uc-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:11px;
  margin-bottom:36px;
}
.uc-logo-mark{
  width:42px; height:42px; border-radius:10px;
  background:linear-gradient(150deg, var(--amber), var(--amber-deep));
  display:flex; align-items:center; justify-content:center;
  font-family:'Fraunces', serif; font-weight:700; font-size:20px;
  color:var(--navy-deep);
}
.uc-logo-text{
  font-family:'Fraunces', serif; font-weight:600; font-size:19px;
  color:var(--white);
}

.uc-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:18px;
  padding:38px 34px;
  text-align:center;
  backdrop-filter:blur(6px);
}

.uc-badge{
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(245,166,35,0.14);
  border:1px solid rgba(245,166,35,0.3);
  color:var(--amber);
  font-size:11.5px; font-weight:700;
  text-transform:uppercase; letter-spacing:0.05em;
  padding:5px 12px; border-radius:20px;
  margin-bottom:20px;
}

.uc-card h1{
  color:var(--white);
  font-size:23px;
  margin-bottom:10px;
  font-family:'Fraunces', serif;
  font-weight:600;
}
.uc-card p.uc-lead{
  color:#AFC0CF;
  font-size:14px;
  line-height:1.6;
  margin-bottom:28px;
}

.uc-form{display:flex; flex-direction:column; gap:12px; text-align:left;}
.uc-field label{
  display:block;
  font-size:12.5px; font-weight:600;
  color:#C9D4DF;
  margin-bottom:6px;
}
.uc-field input{
  width:100%;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.16);
  border-radius:9px;
  padding:12px 14px;
  font-size:14px;
  font-family:inherit;
  color:var(--white);
}
.uc-field input::placeholder{color:#6E8195;}
.uc-field input:focus{
  outline:none;
  border-color:var(--amber);
  background:rgba(255,255,255,0.09);
}

.uc-submit{
  margin-top:8px;
  background:var(--amber);
  color:var(--navy-deep);
  font-size:14.5px; font-weight:600;
  padding:13px;
  border-radius:9px;
  transition:background 0.15s;
}
.uc-submit:hover{background:#FFB734;}

.uc-error{
  background:rgba(178,59,59,0.14);
  border:1px solid rgba(178,59,59,0.35);
  color:#F0A8A8;
  font-size:13px;
  padding:10px 14px;
  border-radius:9px;
  margin-bottom:16px;
  text-align:left;
}

.uc-footer-note{
  margin-top:26px;
  font-size:12px;
  color:#6E8195;
  text-align:center;
  line-height:1.6;
}
.uc-footer-note a{color:#8FA3B5; text-decoration:underline;}
