.rto-form,
.form .row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.rto-left,
.col-md-6.col-12:first-child {
  flex: 1;
  min-width: 260px;
}

.rto-right,
.col-md-6.col-12:last-child {
  flex: 1;
  min-width: 260px;
  background: #f7f9fc;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.rto-left label,
.input-label {
  font-weight: 600;
  display: block;
  margin-top: 15px;
  margin-bottom: 8px;
  color: #14488C;
}

.rto-label {
  margin-bottom: 20px;
  color: #333;
  font-size: 15px;
}

.rto-right p {
  margin-bottom: 15px;
  color: #222;
}

.rto-payment {
  font-size: 2.2em;
  color: #14488C;
  margin: 10px 0;
  font-weight: bold;
}

.rto-summary {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.btn-primary {
  display: inline-block;
  padding: 10px 22px;
  background: #14488C;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #0f3670;
}

.input-range input[type="range"] {
  width: 100%;
  cursor: pointer;
}

@media (max-width: 768px) {
  .rto-right,
  .rto-left,
  .col-md-6.col-12 {
    flex: 1 1 100%;
  }

  .rto-right {
    margin-top: 20px;
  }

  .rto-payment {
    text-align: center;
  }

  .rto-right p,
  .rto-summary {
    text-align: center;
  }

  .btn-primary {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}

a.btn.btn-primary.no-arrow {
    color: white;
}