.crm-wrapper {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
}

.crm-swiper-container {
  margin-bottom: 20px;
}

.crm-slide blockquote {
  background: #f9fafb;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 5px solid #0073aa;
  font-style: italic;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.crm-form {
  border: 1px solid #e5e7eb;
  padding: 20px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.crm-form input[type=text],
.crm-form textarea,
.crm-form select {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.2s ease-in-out;
  background: #f9fafb;
}

.crm-form input[type=text]:focus,
.crm-form textarea:focus,
.crm-form select:focus {
  border-color: #0073aa;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,115,170,0.2);
}

.crm-form textarea {
  min-height: 120px;
  resize: vertical;
}

.crm-form button {
  padding: 12px 18px;
  border-radius: 8px;
  border: 0;
  background: linear-gradient(135deg, #0073aa, #0096d6);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  margin-top: 14px;
  display: inline-block;
}

.crm-form button:hover {
  background: linear-gradient(135deg, #006494, #0088c7);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.crm-form-message {
  margin-top: 12px;
  font-weight: 600;
  color: #16a34a; /* Success green */
}
