:root{
  --brand:#2C33A4;
  --accent:#F58A07;
  --ink:#1b1e28;
  --muted:#5b6375;
  --bg:#f6f8fb;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  min-height:100vh;
  color:var(--ink);
  background-image:url("assets/bg_image.png");
  background-repeat:no-repeat;
  background-size:100% 100%;
  background-position:top right;
  background-color:#f5f7fb;
}

.page{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
padding:40px 24px;
background:rgba(255,255,255,0.15);
backdrop-filter:blur(2px);
}

.card{
  width:100%;
  max-width:1024px;   /* increased */
  height:100%;
  max-height:700px;   /* increased */
  background:rgba(255,255,255,0.78);
  border-radius:16px;
  padding:50px 40px; /* more breathing room */
  box-shadow:0 10px 40px rgba(0,0,0,.08);
  text-align:center;
  backdrop-filter:blur(6px);
}

.logo{
  width:min(280px,60%);
  height:auto;
  margin:6px auto 18px;
  display:block;
}

h1{
  font-size:clamp(26px,3.6vw,36px);
  margin:4px 0 8px;
  color:var(--brand);
  letter-spacing:.2px;
}

.card p{
  color:var(--muted);
  font-size:clamp(16px,2.4vw,18px);
  line-height:1.56;
  margin:0 0 18px;
}

.card p.tag{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  color:#F58A07;
  font-weight:600;
  margin:0 0 18px;
}

.card p.tag::before,
.card p.tag::after{
  content:"";
  flex:1;
  height:1px;
  background:#d9dde6;
  max-width:120px;
}

.cta{
  display:flex;
  gap:12px;
  justify-content:center;
  margin:18px 0 8px;
  flex-wrap:wrap;
}

.btn{
  appearance:none;
  border:1px solid var(--brand);
  background:transparent;
  color:var(--brand);
  padding:12px 18px;
  border-radius:10px;
  font-weight:600;
  text-decoration:none;
  cursor:pointer;
  transition:all .2s ease;
}

.btn.primary{
  background:var(--brand);
  color:#fff;
  border-color:var(--brand);
}

.btn.primary:hover{
  background:#21277e;
  border-color:#21277e;
}

.btn.ghost:hover{
  background:#eff2fa;
}

.notify{
  margin:14px auto 0;
  max-width:560px;
  text-align:left;
}

.notify-label{
display:block;
font-weight:700;
margin:6px 4px 12px;
color:var(--brand);
font-size:15px;
line-height:1.4;
}

.card p.announcement-label{
color:var(--brand);
}

.notify-row{
  display:flex;
  gap:10px;
  margin-bottom:10px;
}

.notify input{
  flex:1;
  border:1.5px solid #d6dbe6;
  border-radius:10px;
  padding:12px 14px;
  font-size:16px;
  outline:none;
}

.notify input:focus{
  border-color:var(--brand);
  box-shadow:0 0 0 3px rgba(44,51,164,.12);
}

.card p.micro{
  font-size:15px;
  color:var(--brand);
  margin:22px 4px 0;
  font-weight:700;
}

.foot{
  margin-top:20px;
  color:#8b92a6;
  font-size:13px;
}

@media (max-width:520px){
  .notify-row{flex-direction:column}
  .btn{width:100%}

  .card p.tag::before,
  .card p.tag::after{
    max-width:60px;
  }
}