/* waitlist.css */
/* INTIMITY Waitlist – CI-konform */
.waitlist-form-dark {
  background: rgba(20, 0, 31, 0.85);
  border-radius: 1.2rem;
  box-shadow:
    0 4px 32px 0 rgba(139, 92, 246, 0.18),
    0 0 0 1.5px rgba(255, 255, 255, 0.07);
  padding: 2.2rem 2rem 1.5rem 2rem;
  max-width: 420px;
  margin: 2.5rem auto 0 auto;
  font-family: inherit;
  border: 1.5px solid rgba(139, 92, 246, 0.13);
  backdrop-filter: blur(12px);
  color: #fff;
  position: relative;
}
.waitlist-form-dark label {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
  font-size: 1.04rem;
  letter-spacing: -0.01em;
}
.waitlist-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.waitlist-form-dark input[type="text"],
.waitlist-form-dark input[type="email"] {
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(139, 92, 246, 0.18);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 1.08rem;
  font-family: inherit;
  outline: none;
  transition:
    border 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 0 0 0 rgba(255, 61, 154, 0);
}
.waitlist-form-dark input[type="text"]:focus,
.waitlist-form-dark input[type="email"]:focus {
  border: 1.5px solid #ff3d9a;
  box-shadow: 0 0 0 2px rgba(255, 61, 154, 0.13);
}
.waitlist-form-dark input[type="checkbox"] {
  accent-color: #ff3d9a;
  width: 1.1em;
  height: 1.1em;
  margin-right: 0.6em;
}
.waitlist-checkbox-group {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  font-size: 1rem;
  gap: 0.7em;
  margin-bottom: 0.1em;
  text-align: left;
  width: 100%;
}
.waitlist-checkbox-group input[type="checkbox"] {
  margin-top: 0.18em;
  flex-shrink: 0;
}
.waitlist-checkbox-group label {
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.4;
  text-align: left;
  width: 100%;
  display: block;
  cursor: pointer;
}
.waitlist-honeypot {
  display: none;
}
.waitlist-btn {
  background: linear-gradient(135deg, #8b5cf6, #ff3d9a);
  color: #fff;
  border: none;
  border-radius: 0.7rem;
  padding: 1rem 1.2rem;
  font-size: 1.13rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 24px 0 rgba(255, 61, 154, 0.13);
  margin-top: 0.5rem;
  transition:
    background 0.18s,
    box-shadow 0.18s,
    transform 0.13s;
  letter-spacing: 0.01em;
}
.waitlist-btn:hover,
.waitlist-btn:focus {
  background: linear-gradient(135deg, #ff3d9a, #8b5cf6);
  box-shadow: 0 8px 32px 0 rgba(255, 61, 154, 0.22);
  transform: translateY(-2px) scale(1.03);
}
.waitlist-error {
  color: #ff3d9a;
  background: rgba(255, 61, 154, 0.08);
  border-radius: 0.4rem;
  padding: 0.7rem 1rem;
  margin-bottom: 0.5rem;
  display: none;
  font-size: 1rem;
  font-weight: 500;
}
.waitlist-success {
  color: #8bffb0;
  background: rgba(46, 125, 50, 0.09);
  border-radius: 0.4rem;
  padding: 0.7rem 1rem;
  margin-bottom: 0.5rem;
  display: none;
  font-size: 1rem;
  font-weight: 500;
}
.waitlist-trust {
  margin-top: 0.7rem;
  color: #fff;
  font-size: 0.98rem;
  opacity: 0.7;
  text-align: center;
}
@media (max-width: 600px) {
  .waitlist-form-dark {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    max-width: 98vw;
  }
}
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.waitlist-form label {
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.waitlist-form input[type="text"],
.waitlist-form input[type="email"] {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
  font-size: 1rem;
}
.waitlist-form input[type="checkbox"] {
  margin-right: 0.5rem;
}
.waitlist-form .waitlist-checkbox-group {
  display: flex;
  align-items: center;
  font-size: 0.98rem;
}
.waitlist-form .waitlist-checkbox-group label {
  font-weight: 400;
  margin-bottom: 0;
}
.waitlist-form .waitlist-honeypot {
  display: none;
}
.waitlist-form button[type="submit"] {
  background: #e94e77;
  color: #fff;
  border: none;
  border-radius: 0.4rem;
  padding: 0.9rem 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.waitlist-form button[type="submit"]:hover,
.waitlist-form button[type="submit"]:focus {
  background: #d13b65;
}
.waitlist-error {
  color: #e94e77;
  background: #fff0f5;
  border-radius: 0.3rem;
  padding: 0.7rem 1rem;
  margin-bottom: 0.5rem;
  display: none;
  font-size: 1rem;
}
.waitlist-success {
  color: #2e7d32;
  background: #e8f5e9;
  border-radius: 0.3rem;
  padding: 0.7rem 1rem;
  margin-bottom: 0.5rem;
  display: none;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .waitlist-cta-box {
    padding: 1.2rem 0.5rem;
    max-width: 98vw;
  }
}
