/*Write your custom css in this file.*/
:root{
  --gdm-green:#006e00;
  --gdm-green-dark:#045804;
  --gdm-light:#eef7ee;
  --gdm-border:#d6e5d6;
  --text:#1f2a1f;
  --muted:#657265;
  --card:#ffffff;
}

*{
  box-sizing:border-box;
}

body.crm-entry-page{
  margin:0;
  min-height:100vh;
  font-family:Aptos, Calibri, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(0,110,0,.10), transparent 34%),
    linear-gradient(135deg,#ffffff 0%,#eef7ee 48%,#f7faf7 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px 18px;
  line-height:1.55;
}

.crm-entry-wrap{
  width:100%;
  max-width:920px;
}

.crm-entry-card{
  background:rgba(255,255,255,.94);
  border:1px solid var(--gdm-border);
  border-radius:28px;
  box-shadow:0 24px 70px rgba(0,0,0,.08);
  overflow:hidden;
}

.crm-entry-topline{
  height:7px;
  background:linear-gradient(90deg,var(--gdm-green),#2f9b2f,#b7d9b7);
}

.crm-entry-inner{
  padding:42px;
}

.crm-entry-brand{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:28px;
}

.crm-entry-logo{
  width:58px;
  height:58px;
  display:block;
  object-fit:contain;
  border-radius:14px;
  box-shadow:0 10px 28px rgba(0,110,0,.18);
}

.crm-entry-brand-text strong{
  display:block;
  color:var(--gdm-green-dark);
  font-size:1.04rem;
  letter-spacing:.01em;
}

.crm-entry-brand-text span{
  display:block;
  color:var(--muted);
  font-size:.92rem;
}

.crm-entry-eyebrow{
  margin:0 0 8px;
  color:var(--gdm-green-dark);
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.78rem;
}

.crm-entry-title{
  margin:0 0 14px;
  font-size:clamp(2rem,4vw,3.2rem);
  line-height:1.08;
  color:var(--gdm-green);
  letter-spacing:-.03em;
}

.crm-entry-lead{
  max-width:760px;
  margin:0 0 24px;
  color:#2f3c2f;
  font-size:1.08rem;
}

.crm-entry-notice{
  margin:26px 0;
  padding:20px 22px;
  border:1px solid var(--gdm-border);
  border-left:6px solid var(--gdm-green);
  background:#fbfdfb;
  border-radius:16px;
}

.crm-entry-notice strong{
  display:block;
  margin-bottom:6px;
  color:var(--gdm-green-dark);
}

.crm-entry-notice p{
  margin:0;
  color:#354235;
  font-size:.98rem;
}

.crm-entry-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  margin:30px 0 26px;
}

.crm-entry-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:13px 22px;
  border-radius:14px;
  border:1px solid var(--gdm-green);
  background:var(--gdm-green);
  color:#fff;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 12px 28px rgba(0,110,0,.18);
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.crm-entry-btn:hover{
  background:var(--gdm-green-dark);
  transform:translateY(-1px);
  box-shadow:0 16px 34px rgba(0,110,0,.24);
  text-decoration:none;
}

.crm-entry-btn.secondary{
  background:#fff;
  color:var(--gdm-green-dark);
  box-shadow:none;
}

.crm-entry-btn.secondary:hover{
  background:var(--gdm-light);
}

.crm-entry-legal{
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  padding-top:22px;
  border-top:1px solid var(--gdm-border);
  font-size:.94rem;
}

.crm-entry-legal a{
  color:var(--gdm-green-dark);
  text-decoration:none;
  font-weight:700;
}

.crm-entry-legal a:hover{
  text-decoration:underline;
}

.crm-entry-operator{
  margin:18px 0 0;
  color:var(--muted);
  font-size:.9rem;
}

.crm-entry-operator strong{
  color:#354235;
}

@media (max-width:720px){
  body.crm-entry-page{
    align-items:flex-start;
    padding:18px 12px;
  }

  .crm-entry-inner{
    padding:28px 22px;
  }

  .crm-entry-brand{
    align-items:flex-start;
  }

  .crm-entry-logo{
    width:50px;
    height:50px;
  }

  .crm-entry-actions{
    align-items:stretch;
  }

  .crm-entry-btn{
    width:100%;
  }
}