/* ==========================================================================
   REGISTER TO DRIVE PAGE STYLES (testdrive.css)
   ========================================================================== */

.testdrive-heading {
  text-transform: uppercase;
  margin-bottom: 20px;
}

.testdrive-req-box {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.testdrive-req-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
}

.testdrive-req-title {
  margin-bottom: 4px;
}

.testdrive-req-desc {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.testdrive-form-card {
  background-color: white;
  border: 1px solid #ECECEC;
  border-radius: var(--border-radius-card);
  padding: 32px;
  box-shadow: var(--shadow-hover);
}

.testdrive-form-title {
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
  padding-bottom: 6px;
}

.btn-testdrive-submit {
  margin-top: 16px;
  height: 48px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Mobile responsive padding */
@media (max-width: 768px) {
  .testdrive-form-card {
    padding: 15px !important;
  }
}
