/**
 * Professional Survey Pro - Public Stylesheet
 */

.psp-survey-container {
  max-width: 720px;
  margin: 20px auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 32px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1e293b;
}

.psp-survey-header {
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.psp-survey-title {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
}

.psp-survey-desc {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
}

.psp-form-group {
  margin-bottom: 24px;
}

.psp-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
}

.psp-label .psp-required {
  color: #ef4444;
  margin-left: 4px;
}

.psp-input, .psp-textarea, .psp-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.psp-input:focus, .psp-textarea:focus, .psp-select:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.psp-submit-btn {
  background: #4f46e5;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s ease;
}

.psp-submit-btn:hover {
  background: #4338ca;
}

.psp-alert {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.psp-alert-success { background: #d1fae5; color: #065f46; }
.psp-alert-error { background: #fee2e2; color: #991b1b; }
