.cbr-form-wrap {
  padding: 0 20px 70px;
}
.cbr-form-wrap__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.cbr-form-box {
  background: #f8fafc;
  border: 1px solid #e4e8f0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.cbr-form-box__title {
  font-size: 24px;
  font-weight: 600;
  color: #1a2433;
  margin-bottom: 8px;
}

.cbr-form-box__text {
  font-size: 14px;
  color: #667085;
  line-height: 1.8;
  margin-bottom: 24px;
}

.cbr-form {
  display: grid;
  gap: 26px;
}

.cbr-form__section {
  background: #ffffff;
  border: 1px solid #e4e8f0;
  border-radius: 14px;
  padding: 24px;
}

.cbr-form__section-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a2433;
  margin-bottom: 18px;
}

.cbr-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.cbr-form__field {
  display: flex;
  flex-direction: column;
}

.cbr-form__field--full {
  grid-column: 1 / -1;
}

.cbr-form label {
  font-size: 13px;
  font-weight: 600;
  color: #344054;
  margin-bottom: 8px;
}

.cbr-form input,
.cbr-form select,
.cbr-form textarea {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 10px;
  background: #ffffff;
  padding: 13px 14px;
  font-size: 14px;
  color: #1a2433;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.cbr-form input:focus,
.cbr-form select:focus,
.cbr-form textarea:focus {
  outline: none;
  border-color: #345894;
  box-shadow: 0 0 0 3px rgba(52,88,148,0.10);
}

.cbr-form textarea {
  min-height: 120px;
  resize: vertical;
}

.cbr-form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cbr-form__check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #345894;
}

.cbr-form__check label {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: #475467;
}

.cbr-form__actions {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.cbr-form-msg {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.7;
}

.cbr-form-msg--ok {
  background: #ecfdf3;
  border: 1px solid #abefc6;
  color: #067647;
}

.cbr-form-msg--error {
  background: #fef3f2;
  border: 1px solid #fecdca;
  color: #b42318;
}

.cbr-form-msg--error ul {
  margin: 8px 0 0 18px;
}

.cbr-btn {
  display: inline-block;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.cbr-btn--primary {
  background: #345894;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(52, 88, 148, 0.25);
}

.cbr-btn--primary:hover {
  background: #2a4778;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

.cbr-btn--secondary {
  background: #ffffff;
  color: #345894;
  border: 1px solid #d0d7e2;
}

.cbr-btn--secondary:hover {
  background: #f3f6fa;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .cbr-form-wrap {
    padding: 0 14px 50px;
  }

  .cbr-form-box {
    padding: 20px;
  }

  .cbr-form__section {
    padding: 18px;
  }

  .cbr-form__grid {
    grid-template-columns: 1fr;
  }

  .cbr-form-box__title {
    font-size: 22px;
  }
}
.g-recaptcha {
  margin-top: 6px;
}

@media (max-width: 767px) {
  .g-recaptcha {
    transform: scale(0.92);
    transform-origin: left top;
  }
}
.cbr-form__field-error {
  margin-top: 6px;
  font-size: 12px;
  color: #b42318;
  line-height: 1.5;
}

.cbr-input-error {
  border-color: #d92d20 !important;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.10) !important;
}
.cbr-btn[disabled],
.cbr-btn--loading {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}