/* Wrapper and Background Overlay */
.no-dealer-available-wrapper {
  background-color: #2e2e2e;
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.no-dealer-overlay {
  max-width: 700px;
  margin: 0 auto;
}

/* Headings and Text */
.no-dealer-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.no-dealer-subtitle {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Form Inputs */
.no-dealer-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.no-dealer-input {
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 2px;
  width: 100%;
  max-width: 100%;
}

/* Button */
.btn-find-dealer {
  background-color: #e0582c;
  color: white;
  border: none;
  padding: 14px 24px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 2px;
  width: fit-content;
  align-self: center;
  margin-top: 0px;
}

.btn-find-dealer:hover {
  background-color: #c84e24;
}

/* Recaptcha text */
.recaptcha-disclaimer {
  font-size: 12px;
  color: #ccc;
  margin-top: 0px;
  margin-bottom: 0px;
}

.recaptcha-disclaimer a {
  color: #ccc;
  text-decoration: underline;
}

/* Dealer CTA section */
/* .dealer-interest-cta {
  margin-top: 40px;
} */

/* .cta-box {
  background-color: #3d3d3d;
  margin: 40px auto 0;
  padding: 20px 30px;
  border-radius: 6px;
  max-width: 600px;
}

.cta-box p {
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 15px;
} */

.dealer-cta-box {
  background-color: #3d3d3d;
  margin: 40px auto 0;
  padding: 20px 30px;
  border-radius: 6px;
  max-width: 600px;
}

.dealer-cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
/* 
.btn-find-out-more {
  background-color: #e0582c;
  color: white;
  padding: 10px 20px;
  display: inline-block;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
} */

/* .btn-find-out-more:hover {
  background-color: #c84e24;
} */

.dealer-cta-icon {
  width: 100px;
  height: auto;
}

.dealer-cta-text p {
  margin: 0;
  font-size: 1.1rem;
}

.btn-find-out-more {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  color: #f15a29;
  border: 2px solid #f15a29;
  text-decoration: none;
  /* font-weight: bold; */
  border-radius: 3px;
}

.btn-find-out-more:hover {
  background-color: #f15a29;
  color: #fff;
}

/* spinner */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
