.leadPageWrapper {
  margin-top: 70px;
  padding: 25px 0px;
  height: calc(100vh - 100px);
  background-image: url("../images/background/lead-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}


.container {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 100%;
  padding: 15px 20px;
  margin: 0 auto 0 200px;
}

.header {
  text-align: center;
  margin-bottom: 25px;
}

.header h2 {
  position: relative;
  color: #0c506d;
  margin-bottom: 10px;
  font-weight: 600;
}

.header h2:after {
position: absolute;
content: "";
left: 50%;
bottom: -6px;
transform: translate(-50% , 0px);
width: 100px;
height: 2px;
background-color: #0c506d;
}

.header p {
  color: #666;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  color: #0c506d;
  font-weight: 600;
  margin-bottom: 8px;
}

input,
select {
  width: 100%;
  padding: 8px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: white;
  color: #333;
}

input:focus,
select:focus {
  outline: none;
  border-color: #0083cb;
  box-shadow: 0 0 0 4px rgba(0, 131, 203, 0.1);
}

input::placeholder {
  color: #999;
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230c506d' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

sup {
  color: rgb(231, 0, 0);
  font-size: 18px;
  font-weight: 500;
  top: -2.5px;
}

.submit-btn {
  background: linear-gradient(135deg, #0c506d 0%, #0083cb 100%);
  color: white;
  padding: 16px 16px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  width: 100%;
  display: block;
  text-align: center;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 131, 203, 0.3);
  color: #ffffff;
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn .mdi {
  margin-left: 10px;
}

.ftrLogo a img {
  max-width: 120px;
  padding: 0px;
}

.tagLine {
  color: #0083cb;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: cursive;
}

label.error {
  font-size: 12px;
  margin-top: 4px;
  color: #e81818;
  font-weight: 500;
}

@media screen and (min-width: 992px) and (max-width: 1199.98px) {
  .leadPageWrapper .container {
    height: calc(100vh - 150px);
    overflow: hidden;
    overflow-y: auto;
  }
}

@media screen and (max-width: 991.98px) {
  .leadPageWrapper {
    background-image: unset;
    padding: 15px 15px;
    margin-top: 50px;
  }

  .leadPageWrapper .container {
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }
}

@media screen and (max-width: 767.98px) {
  .tagLine {
    display: none !important;
  }

  input,
  select {
    padding: 6px 12px;
  }

  .submit-btn {
    padding: 8px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 10px 10px;
  }
}