/* Ranchi Services Core Plugin - Form Styles */
.ranchi-form-wrapper {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

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

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1e293b;
}

.ranchi-input, .ranchi-select {
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 15px;
}

.ranchi-input:focus, .ranchi-select:focus {
  border-color: #0284c7;
  outline: none;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.captcha-field {
  grid-column: span 2;
  background: #f8fafc;
  padding: 12px;
  border-radius: 8px;
  border: 1px dashed #cbd5e1;
}

.ranchi-btn-submit {
  width: 100%;
  margin-top: 16px;
  background: #0284c7;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.ranchi-btn-submit:hover {
  background: #0369a1;
}

.ranchi-response-message {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-weight: 600;
}

.ranchi-response-message.success {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.ranchi-response-message.error {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}
