.cs-lead-form-wrap {
  width: 100%;
}

.cs-lead-form-success {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f4f4f4;
  color: #1a1a1a;
  font-size: 15px;
}

.cs-lead-form {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.cs-form-row {
  margin-bottom: 16px;
}

.cs-form-row label {
  display: block;
  margin-bottom: 8px;
  color: #5f6368;
  font-size: 14px;
  font-weight: 500;
}

.cs-form-row input,
.cs-form-row textarea {
  width: 100%;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  color: #1a1a1a;
  background: #ffffff;
  box-sizing: border-box;
}

.cs-form-row input:focus,
.cs-form-row textarea:focus {
  outline: none;
  border-color: #d6c08f;
}

.cs-form-row button {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 16px 20px;
  background: #e6d3a3;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cs-form-row button:hover {
  background: #d6c08f;
}