*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { max-width: 100%; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  background-image: url('../img/bg-payment-page.png');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
  color: #313131;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.payment-wrap {
  max-width: 1040px;
  margin: 50px auto;
  border-radius: 10px;
  background-color: #FFFFFF;
  box-shadow: 0 10px 75px rgba(0,0,0,0.10);
  display: flex;
  overflow: hidden;
}

.p-txt {
  background: #193C57;
  color: #FFFFFF;
  padding: 50px;
  flex: 0 0 500px;
}

.p-txt .badge {
  display: inline-block;
  background: #FD6736;
  color: #FFFFFF;
  font-size: 14px;
  border-radius: 6px;
  padding: 6px 10px;
  margin-bottom: 14px;
}

.p-txt h2 { font-size: 28px; margin: 8px 0; }
.p-txt h3 { font-size: 20px; margin: 12px 0; }
.p-txt p  { font-size: 14px; margin-top: 9px; line-height: 1.5; }

.separator-line {
  height: 1px;
  background-color: #FD6736;
  margin: 40px 0;
}

.p-form {
  padding: 50px;
  flex: 1 1 auto;
}

.p-form h2 { font-size: 24px; margin-bottom: 15px; }

.sm-txt {
  font-size: 12px;
  color: #888888;
  margin-bottom: 20px;
  display: block;
}

.form-group { margin-bottom: 15px; }

.form-control {
  width: 100%;
  border: 1px solid #ced4da;
  border-radius: 5px;
  padding: 20px 30px;
  font-size: 14px;
}

.form-control:focus { outline: none; border-color: #86b7fe; }

textarea.form-control {
  height: 110px;
  resize: vertical;
}

.btn-primary {
  width: 100%;
  height: 60px;
  background-color: #FD6736;
  border: none;
  border-radius: 5px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.faq-item { margin-top: 20px; }
.faq-item strong { display: block; margin-bottom: 8px; }

.message {
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 14px;
}

.message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.error .form-control { border-color: #d9534f; }
.error .form-control::placeholder { color: #d9534f; }

@media (max-width: 768px) {
  .payment-wrap { flex-direction: column; margin: 30px; }
  .p-txt, .p-form { padding: 30px; text-align: center; }
}
