/* Layout */
.bnw-wrap {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 18px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.bnw-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
}

.bnw-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 18px;
}

@media (max-width: 980px) {
  .bnw-grid {
    grid-template-columns: 1fr;
  }
}

/* Steps indicator */
.bnw-steps {
  display: flex;
  gap: 10px;
  margin: 10px 0 20px;
}

.bnw-step {
  padding: 6px 10px;
  border-radius: 8px;
  background: #f6f6f6;
}

.bnw-step.is-active {
  background: #1a73e8;
  color: #fff;
}

/* Options / radios */
.bnw-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 12px;
  cursor: pointer;
}

.bnw-option.is-selected {
  border-color: #1a73e8;
  box-shadow: 0 0 0 2px rgba(26,115,232,.15);
}

/* Actions / buttons */
.bnw-actions {
  margin-top: 14px;
}

.bnw-actions button,
.bnw-sidebar-btn {
  background: #ffc800;
  border: 0;
  border-radius: 8px;
  padding: .7rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  color: #000;
}

/* Forms */
input,
select {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: .6rem .7rem;
  width: 100%;
}

label {
  display: block;
  margin-bottom: 10px;
}

.bnw-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 600px) {
  .bnw-form-grid {
    grid-template-columns: 1fr;
  }
}

.bnw-agree {
  margin-top: 10px;
}

/* Confirm page */
.bnw-confirm h1 {
  margin-top: 0;
}

.bnw-confirm .bnw-next {
  margin-top: 20px;
  font-size: 15px;
}

.bnw-quick-contacts {
  font-size: 14px;
  color: #666;
}

/* Keep radio button and text inline */
.bnw-option span {
  display: inline-flex;
  align-items: center;
  gap: 8px;              /* space between radio and text */
  white-space: nowrap;   /* prevent line breaks */
}

.bnw-option input[type="radio"] {
  margin: 0;
	width:auto;
}
