/* 1) Root palette */
:root {
  --teal-light: rgba(26, 188, 156, 0.2);
  --teal-dark-light: rgba(22, 160, 133, 0.2);
  --teal: #1abc9c;
  --teal-dark: #16a085;
}

/* 2) Base & background */
html, body {
  height: 100%;
  margin: 0;
}
body {
  background: url('background.png') no-repeat center center fixed;
  background-size: cover;
  font-family: 'More Sugar Thin', sans-serif;
  font-size: 1.375rem;
  color: #fff;
  line-height: 1.6;
}

/* 3) Glass panels with bluish-green gradient */
.glass {
  margin: 3rem auto;
  padding: 2.5rem;
  width: 85%;
  max-width: 800px;
  background: linear-gradient(
    135deg,
    var(--teal-light),
    var(--teal-dark-light) 80%
  );
  backdrop-filter: blur(20px);
  border: 2px solid var(--teal);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  text-align: left;
}

/* 4) Logo & headings in teal */
.logo {
  display: block;
  margin: 0 auto 1.5rem;
  width: 90px;
}
h1, h2 {
  font-family: 'More Sugar', cursive;
  color: var(--teal);
  margin-bottom: 1rem;
}
h1 {
  font-size: 3rem;
  text-align: center;
}
h2 {
  font-size: 2.25rem;
}

/* 5) Body text & lists */
p, li {
  font-family: 'More Sugar Thin', sans-serif;
  color: #f5f5f5;
  margin-bottom: 1rem;
}
ol {
  padding-left: 1.75rem;
}

/* 6) Inline “dropping fast 📉” remains via `.highlight-drop` */

/* 7) Inputs centered, bordered teal */
form input,
form textarea {
  width: 80%;
  max-width: 600px;
  display: block;
  margin: 0.75rem auto;
  padding: 1rem;
  background: rgba(255,255,255,0.85);
  border: 2px solid var(--teal);
  border-radius: 10px;
  font-family: 'More Sugar Thin', sans-serif;
  font-size: 1rem;
  color: #000;
}
form input:focus,
form textarea:focus {
  border-color: var(--teal-dark);
  box-shadow: 0 0 8px rgba(26,188,156,0.5);
}

/* 8) Button gradient teal → dark teal */
form button {
  display: block;
  width: 80%;
  max-width: 600px;
  margin: 1rem auto 0;
  padding: 1rem;
  background: linear-gradient(45deg, var(--teal), var(--teal-dark));
  border: none;
  border-radius: 12px;
  font-family: 'More Sugar', cursive !important;
  font-size: 1.25rem;
  color: #000;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform .2s, box-shadow .2s;
}
