/* ============================================================
   ALERT SIGNUP COMPONENT STYLES (alert_signup.css)
   Extracted from index.css for component use
   ============================================================ */

.alert-section {
  background: var(--green-deep);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}
.alert-bg-orb {
  position: absolute;
  right: -120px; top: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,179,0,.14) 0%, transparent 65%);
  pointer-events: none;
}
.alert-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.alert-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: #fff;
  margin: 12px 0 12px;
  line-height: 1.25;
}
.alert-title em { font-style: normal; color: var(--amber-bright); }
.alert-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: rgba(255,255,255,.70);
  margin: 0 0 20px;
  line-height: 1.7;
}
.alert-perks {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.alert-perks li {
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  color: rgba(255,255,255,.80);
}
.alert-form-wrap {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  box-sizing: border-box;
}
.alert-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.alert-form input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: .925rem;
  color: #fff;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
}
.alert-form input::placeholder { color: rgba(255,255,255,.40); }
.alert-form input:focus {
  border-color: rgba(255,255,255,.45);
  box-shadow: 0 0 0 3px rgba(255,255,255,.06);
}
.btn-alert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--amber);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  min-height: 46px;
  width: 100%;
  box-sizing: border-box;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(245,127,23,.30);
}
.btn-alert:hover {
  background: #E65100;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,127,23,.40);
}
.btn-alert:focus-visible {
  outline: 3px solid var(--amber-bright);
  outline-offset: 2px;
}
.alert-disclaimer {
  margin: 12px 0 0;
  font-family: 'DM Sans', sans-serif;
  font-size: .76rem;
  color: rgba(255,255,255,.45);
  text-align: center;
}
