@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body, .lcp-wrapper-box {
  font-family: 'Poppins', sans-serif;
}

.lcp-wrapper-box {
  background: #0d111c;
  border-radius: 20px;
  padding: 25px;
  color: white;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
}

.lcp-wrapper-inner {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.lcp-lead-info,
.lcp-lead-form-wrapper {
  flex: 1 1 300px;
  min-width: 280px;
  padding: 20px;
}

.lcp-lead-info h2 {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.lcp-lead-info .highlight-text {
  background: linear-gradient(to right, #2af598, #009efd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lcp-highlight-lang {
  background: #fff5cc;
  color: #333;
  padding: 8px 12px;
  font-weight: bold;
  display: inline-block;
  border-radius: 8px;
  margin-bottom: 15px;
}

.lcp-benefits {
  list-style: none;
  padding-left: 0;
  margin: 0 0 15px 0;
}

.lcp-benefits li {
  margin-bottom: 8px;
  font-size: 14px;
}

.lcp-lead-form-wrapper h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.lcp-subtext {
  font-size: 13px;
  margin-bottom: 15px;
  color: #aaa;
}

.lcp-lead-form-wrapper input {
  display: block;
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 12px;
  border-radius: 20px;
  border: none;
  font-size: 15px;
  background-color: #e8f0fe !important;
  color: #000 !important;
  box-sizing: border-box;
  outline: none;
  z-index: 1;
  position: relative;
}

/* ✅ Fix Chrome's yellow autofill background */
.lcp-lead-form-wrapper input:-webkit-autofill,
.lcp-lead-form-wrapper input:-webkit-autofill:hover,
.lcp-lead-form-wrapper input:-webkit-autofill:focus,
.lcp-lead-form-wrapper input:-webkit-autofill:active {
  box-shadow: 0 0 0 1000px #e8f0fe inset !important;
  -webkit-box-shadow: 0 0 0 1000px #e8f0fe inset !important;
  -webkit-text-fill-color: #000 !important;
  border-radius: 20px;
}


.lcp-lead-form-wrapper button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(to right, #2af598, #009efd);
  color: white;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
}

#lcp-popup-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background: transparent;
  width: 90vw;
  max-width: 1000px;
  padding: 0;
}

#lcp-close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  background: white;
  color: black;
  font-size: 18px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 30px;
  height: 30px;
}

.lcp-popup-hidden {
  display: none;
}

.lcp-success-msg {
  padding: 20px;
  background: #e1ffe1;
  color: #046b04;
  text-align: center;
  font-weight: bold;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .lcp-wrapper-inner {
    flex-direction: column;
  }

  .lcp-lead-info,
  .lcp-lead-form-wrapper {
    max-width: 100%;
    padding: 10px;
  }
}
