@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&amp;family=Montserrat:ital,wght@0,100..900;1,100..900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Marcellus&amp;display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  line-height: normal;
  font-family: "Marcellus", serif;
  font-family: "Montserrat", sans-serif;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: #f5f5f5;
  background-color: #32367b;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  padding-bottom: 100px;
  height: auto;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  /* background: #fff; */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  gap: 20px;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(198, 198, 198, 0.2);
}

.form-container h2 {
  width: 100%;
  text-align: center;
  color: white;
  display: block;
  padding: 1rem;
  background: linear-gradient(135deg, #00bfa5, #00897b);
  border-radius: 10px;
  font-size: clamp(1.6rem, 2vw + 1rem, 2.5rem);
}

.form-banner img {
  width: 100%;
  border-radius: 8px;
}

.mobilebanner {
  display: none;
}

.solution-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.solution-table th,
.solution-table td {
  border: 1px solid #0b6c60;
  padding: 10px;
  font-size: 14px;
  color: wheat;
}

.solution-table th {
  /* background-color: #f0f0f0; */
}

.form-group {
  width: 100%;
  margin: 15px 0;
  color: wheat;
}

.form-group label {
  font-size: 12px;
  font-weight: bold;
}

.form-group label span,
table span {
  color: red;
}

input[type="text"],
input[type="tel"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 10px;
}

.error {
  font-size: 0.9rem;
  color: red;
  display: block;
  margin-top: 5px;
}

input {
  border: 1px solid #ccc;
  padding: 0.5rem;
}

input:focus {
  outline: 1px solid #4caf50;
}

input[type="radio"] {
  accent-color: #4caf50;
  outline: none !important;
  cursor: pointer;
}

.flex-row {
  display: flex;
  gap: 10px;
}

.flex-row .form-group {
  flex: 1;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #007758;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #006347;
}

.footer-mobile {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-mobile a {
  font-size: 25px;
  color: wheat;
}

.footer-mobile span {
  display: none;
}

@media (max-width: 786px) {
  .mobilebanner {
    display: block;
  }

  .widnowbanner {
    display: none;
  }

  .solution-table th,
  .solution-table td {
    font-size: 12px;
  }

  .form-group {
    margin: 10px 0;
  }

  .footer-mobile {
    position: fixed;
    top: auto;
    transform: none;
    bottom: 0;
    left: 0;
    display: block;
    right: 0;
    background: #fff;
    z-index: 998;
    width: 100%;
    height: 48px;
    z-index: 99999999999999999;
  }

  .footer-mobile a span {
    display: inline-block;
  }

  .footer-mobile a {
    display: inline-block;
    padding: 12px 9px;
    color: #000;
    text-decoration: none;
    width: 50%;
    font-weight: 60;
    border-radius: 4px;
    font-size: 14px;
    text-transform: uppercase;
    margin: 1px 0 0 0;
    text-align: center;
    float: left;
    font-weight: 500;
  }

  .footer-mobile a i {
    font-size: 18px;
    padding-right: 4px;
    position: relative;
    top: 2px;
    color: #383838;
  }

  .footer-mobile a:after {
    position: absolute;
    content: "";
    right: 0;
    left: 0;
    margin: 0 auto;
    height: 90%;
    width: 1px;
    bottom: 4%;
    background: #d3d3d3;
  }
}

.thankyou-main-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.thankyou-container {
  padding: 40px;
  max-width: 500px;
  width: 100%;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(198, 198, 198, 0.2);
}

.thankyou-container h1 {
  color: wheat;
  margin-bottom: 20px;
  font-size: 28px;
}

.thankyou-container p {
  font-size: 16px;
  color: white;
  margin-bottom: 30px;
}

.thankyou-container a {
  display: inline-block;
  padding: 12px 30px;
  background-color: #007758;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.thankyou-container a:hover {
  background-color: #005f47;
}
