/**
 * Boston Molecules - Configurator Wizard Styles
 *
 * Wizard layout, sequence input, metrics, difficulty warnings,
 * step indicators, form elements for peptide/protein/antibody configurators.
 */

/* ──────────────────────────────────────────────
   Wizard Container
   ────────────────────────────────────────────── */

.configurator-wizard {
  max-width: 900px;
  margin: 40px auto;
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* ──────────────────────────────────────────────
   Wizard Header & Progress
   ────────────────────────────────────────────── */

.wizard-header {
  padding: 32px 32px 0;
  text-align: center;
}

.wizard-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 24px;
}

.wizard-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
}

/* Step Indicators */
.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 700;
  border: 2px solid rgba(0,0,0,0.15);
  color: rgba(0,0,0,0.4);
  background: rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.step-label {
  font-size: 18px;
  color: rgba(0,0,0,0.4);
  font-weight: 500;
  transition: color 0.3s ease;
}

.step-indicator.active .step-number {
  background: rgba(0, 212, 255, 0.15);
  border-color: #00d4ff;
  color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.step-indicator.active .step-label {
  color: #00d4ff;
}

.step-indicator.completed .step-number {
  background: rgba(0, 255, 136, 0.15);
  border-color: #00ff88;
  color: #00ff88;
}

.step-indicator.completed .step-number::after {
  content: '✓';
  font-size: 18px;
}

.step-indicator.completed .step-label {
  color: #00ff88;
}

/* Step Connecting Lines */
.step-line {
  width: 60px;
  height: 2px;
  background: rgba(0,0,0,0.1);
  margin: 0 12px;
  margin-bottom: 22px;
  transition: background 0.3s ease;
}

/* Progress Bar */
.wizard-progress {
  height: 3px;
  background: rgba(0,0,0,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 32px;
}

.wizard-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #00d4ff, #00ff88);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* ──────────────────────────────────────────────
   Wizard Steps Content
   ────────────────────────────────────────────── */

.wizard-step {
  display: none;
  padding: 32px;
}

.wizard-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-content h3 {
  font-size: 28px;
  color: #ffffff;
  margin: 0 0 8px;
}

.step-description {
  font-size: 17px;
  color: rgba(0,0,0,0.5);
  margin: 0 0 24px;
  line-height: 1.5;
}

/* ──────────────────────────────────────────────
   Sequence Input
   ────────────────────────────────────────────── */

.sequence-input-wrapper {
  margin-bottom: 24px;
}

.sequence-input,
textarea.sequence-input {
  width: 100%;
  min-height: 150px;
  background: #ffffff;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 16px;
  font-family: 'Fira Code', 'JetBrains Mono', 'Roboto Mono', monospace;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.15em;
  color: #00d4ff;
  resize: vertical;
  transition: border-color 0.2s ease;
}

.sequence-input:focus,
textarea.sequence-input:focus {
  border-color: #00d4ff;
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.sequence-input::placeholder {
  color: rgba(0,0,0,0.2);
  letter-spacing: 0.1em;
}

.sequence-char-count {
  text-align: right;
  font-size: 18px;
  color: rgba(0,0,0,0.4);
  margin-top: 8px;
}

.sequence-validation {
  margin-top: 8px;
}

.validation-success {
  color: #00ff88;
  font-size: 18px;
}

.validation-error {
  color: #ef4444;
  font-size: 18px;
}

.sequence-info {
  font-size: 18px;
  color: rgba(0,0,0,0.5);
  margin-top: 8px;
}

/* ──────────────────────────────────────────────
   Sequence Metrics
   ────────────────────────────────────────────── */

.sequence-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.metric-card {
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: border-color 0.2s ease;
}

.metric-card:hover {
  border-color: rgba(0, 212, 255, 0.15);
}

.metric-icon {
  margin-bottom: 8px;
  color: #00d4ff;
}

.metric-label {
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.4);
  margin-bottom: 4px;
}

.metric-value {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Fira Code', monospace;
}

.metric-unit {
  font-size: 17px;
  color: rgba(0,0,0,0.35);
  margin-top: 2px;
}

/* ──────────────────────────────────────────────
   Difficulty Assessment
   ────────────────────────────────────────────── */

.difficulty-assessment {
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 20px;
  margin-top: 24px;
}

.difficulty-assessment h4 {
  font-size: 17px;
  color: rgba(0,0,0,0.7);
  margin: 0 0 16px;
}

.difficulty-meter {
  height: 8px;
  background: rgba(0,0,0,0.06);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.difficulty-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.5s ease, background 0.3s ease;
}

.difficulty-fill.difficulty-easy {
  background: linear-gradient(90deg, #00ff88, #22c55e);
}

.difficulty-fill.difficulty-moderate {
  background: linear-gradient(90deg, #eab308, #f59e0b);
}

.difficulty-fill.difficulty-difficult {
  background: linear-gradient(90deg, #f97316, #ef4444);
}

.difficulty-fill.difficulty-very-difficult {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.difficulty-label {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.difficulty-label.difficulty-easy { color: #00ff88; }
.difficulty-label.difficulty-moderate { color: #eab308; }
.difficulty-label.difficulty-difficult { color: #f97316; }
.difficulty-label.difficulty-very-difficult { color: #ef4444; }

.difficulty-factors ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.difficulty-factors li {
  padding: 6px 0;
  font-size: 18px;
  color: rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.difficulty-factors li::before {
  content: '⚠ ';
  margin-right: 6px;
}

.difficulty-factors .no-issues {
  color: #00ff88;
  font-size: 18px;
}

/* ──────────────────────────────────────────────
   Modifications & Options
   ────────────────────────────────────────────── */

.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.modification-group,
.options-section {
  margin-bottom: 24px;
}

.modification-group h4,
.options-section h4 {
  font-size: 17px;
  color: rgba(0,0,0,0.7);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.options-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.option-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  background: rgba(0,0,0,0.05);
}

.option-card input[type="radio"],
.option-card input[type="checkbox"] {
  accent-color: #00d4ff;
  flex-shrink: 0;
}

.option-card input:checked ~ .option-card-content {
  color: #ffffff;
}

.option-card:has(input:checked) {
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.05);
}

.option-card-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.option-name {
  font-size: 17px;
  font-weight: 500;
  color: rgba(0,0,0,0.8);
}

.option-cost {
  font-size: 18px;
  color: rgba(0, 212, 255, 0.7);
}

.option-desc {
  font-size: 18px;
  color: rgba(0,0,0,0.4);
}

.option-card.small {
  padding: 8px 14px;
}

/* Button Groups (Purity / Scale) */
.options-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.option-section h4 {
  font-size: 17px;
  color: rgba(0,0,0,0.7);
  margin: 0 0 12px;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.scale-btn {
  padding: 8px 16px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  color: rgba(0,0,0,0.6);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.scale-btn:hover {
  border-color: rgba(0, 212, 255, 0.3);
  color: rgba(0,0,0,0.8);
}

.scale-btn.active {
  background: rgba(0, 212, 255, 0.1);
  border-color: #00d4ff;
  color: #00d4ff;
  font-weight: 600;
}

/* ──────────────────────────────────────────────
   Expression System Cards (Protein Configurator)
   ────────────────────────────────────────────── */

.expression-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.expression-card {
  background: rgba(0,0,0,0.03);
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.expression-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  background: rgba(0,0,0,0.05);
}

.expression-card.selected {
  border-color: #00d4ff;
  background: rgba(0, 212, 255, 0.05);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.expression-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.expression-icon {
  font-size: 28px;
}

.expression-card-header h4 {
  flex: 1;
  font-size: 18px;
  color: #ffffff;
  margin: 0;
}

.expression-timeline {
  font-size: 18px;
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.1);
  padding: 4px 10px;
  border-radius: 12px;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pros h5,
.cons h5 {
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}

.pros h5 { color: #00ff88; }
.cons h5 { color: #f97316; }

.pros ul,
.cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros li,
.cons li {
  font-size: 18px;
  color: rgba(0,0,0,0.5);
  padding: 3px 0;
}

/* Tag Selection */
.tag-selection {
  margin-top: 24px;
}

.tag-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

/* ──────────────────────────────────────────────
   Timeline Display
   ────────────────────────────────────────────── */

.timeline-estimate {
  margin-bottom: 24px;
}

.timeline-box {
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 24px;
}

.timeline-box h4 {
  font-size: 17px;
  color: rgba(0,0,0,0.7);
  margin: 0 0 16px;
}

.timeline-bar {
  display: flex;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.timeline-phase {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  font-size: 17px;
  font-weight: 500;
  color: rgba(0,0,0,0.8);
  position: relative;
}

.timeline-phase:nth-child(1) {
  background: rgba(0, 212, 255, 0.2);
}

.timeline-phase:nth-child(2) {
  background: rgba(0, 212, 255, 0.35);
}

.timeline-phase:nth-child(3) {
  background: rgba(0, 255, 136, 0.2);
}

.timeline-phase:nth-child(4) {
  background: rgba(0, 255, 136, 0.35);
}

.timeline-duration {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  color: rgba(0,0,0,0.7);
}

.timeline-icon {
  font-size: 18px;
}

.timeline-text strong {
  color: #00d4ff;
}

/* ──────────────────────────────────────────────
   Wizard Navigation
   ────────────────────────────────────────────── */

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: rgba(0,0,0,0.02);
}

.wizard-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.wizard-btn-back {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.15);
  color: rgba(0,0,0,0.7);
}

.wizard-btn-back:hover {
  border-color: rgba(0,0,0,0.3);
  color: #ffffff;
}

.wizard-btn-next {
  background: #e67e22;
  color: #ffffff;
  margin-left: auto;
}

.wizard-btn-next:hover {
  background: #e67e22;
}

.wizard-btn-submit {
  background: #e67e22;
  color: #ffffff;
  font-weight: 700;
  margin-left: auto;
}

.wizard-btn-submit:hover {
  background: #e67e22;
}

.wizard-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ──────────────────────────────────────────────
   Review Step
   ────────────────────────────────────────────── */

.review-summary {
  margin-bottom: 24px;
}

.review-section {
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 12px;
}

.review-section h4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  color: rgba(0,0,0,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 12px;
}

.review-edit {
  background: transparent;
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: #00d4ff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.review-edit:hover {
  background: rgba(0, 212, 255, 0.1);
}

.review-sequence {
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: 'Fira Code', monospace;
  font-size: 17px;
  letter-spacing: 0.15em;
  color: #00d4ff;
  word-break: break-all;
  margin-bottom: 12px;
}

.review-metrics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.review-metrics span {
  font-size: 18px;
  color: rgba(0,0,0,0.6);
}

.review-metrics strong {
  color: rgba(0,0,0,0.8);
}

.review-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.detail-label {
  font-size: 18px;
  color: rgba(0,0,0,0.45);
}

.detail-value {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
}

/* Price Estimate Box */
.price-estimate-box {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 212, 255, 0.05));
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 16px;
  margin-bottom: 24px;
}

.price-label {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.5);
  margin-bottom: 8px;
}

.price-value {
  font-size: 36px;
  font-weight: 700;
  color: #00ff88;
  font-family: 'Fira Code', monospace;
}

.price-note {
  font-size: 18px;
  color: rgba(0,0,0,0.4);
  margin-top: 8px;
}

/* ──────────────────────────────────────────────
   Contact / Quote Fields
   ────────────────────────────────────────────── */

.quote-contact-fields h4 {
  font-size: 18px;
  color: rgba(0,0,0,0.8);
  margin: 0 0 16px;
}

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

.form-grid .full-width {
  grid-column: 1 / -1;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0,0,0,0.5);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 17px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #00d4ff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0,0,0,0.2);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.input-with-unit {
  display: flex;
  gap: 8px;
}

.input-with-unit input {
  flex: 1;
}

.input-with-unit select {
  width: 80px;
}

/* Validation Errors */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #ef4444;
}

.form-group .error-message {
  font-size: 18px;
  color: #ef4444;
  margin-top: 4px;
}

/* Form Messages */
.form-message {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 17px;
  margin-top: 16px;
  display: none;
}

.form-message:not(:empty) {
  display: block;
}

.form-message-success {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.2);
  color: #00ff88;
}

.form-message-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* ──────────────────────────────────────────────
   QC Requirements
   ────────────────────────────────────────────── */

.qc-section {
  margin-top: 24px;
}

.qc-section h4 {
  font-size: 17px;
  color: rgba(0,0,0,0.7);
  margin: 0 0 12px;
}

.qc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.qc-grid .filter-checkbox {
  padding: 10px 14px;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.qc-grid .filter-checkbox .filter-label {
  font-size: 17px;
  font-weight: 500;
}

.qc-grid .filter-checkbox .option-desc {
  padding-left: 28px;
}

/* Conjugation list */
.conjugation-list {
  flex-direction: row;
  flex-wrap: wrap;
}

/* ──────────────────────────────────────────────
   Responsive
   ────────────────────────────────────────────── */

@media (max-width: 768px) {
  .configurator-wizard {
    margin: 20px 16px;
    border-radius: 16px;
  }

  .wizard-header {
    padding: 20px 20px 0;
  }

  .wizard-title {
    font-size: 28px;
  }

  .wizard-step {
    padding: 20px;
  }

  .step-label {
    display: none;
  }

  .step-line {
    width: 30px;
    margin-bottom: 0;
  }

  .options-grid,
  .form-grid,
  .form-row,
  .options-row {
    grid-template-columns: 1fr;
  }

  .expression-grid {
    grid-template-columns: 1fr;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .qc-grid {
    grid-template-columns: 1fr;
  }

  .sequence-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .tag-options {
    grid-template-columns: 1fr;
  }

  .wizard-nav {
    padding: 16px 20px;
  }

  .wizard-btn {
    padding: 10px 18px;
    font-size: 18px;
  }

  .price-value {
    font-size: 28px;
  }

  .review-metrics {
    gap: 10px;
  }
}

/* === Form inputs & labels - larger font === */
.glass-input,
.configurator-wizard input,
.configurator-wizard select,
.configurator-wizard textarea,
.configurator-wizard label, form label {
  font-size: 1.1rem !important;
}

.configurator-wizard label, form label {
  font-size: 1.1rem !important;
  color: rgba(255,255,255,0.85);
  font-weight: 700 !important;
  margin-bottom: 0.4rem;
}

/* Force orange submit buttons */
#bm-submit-bulk-quote,
#submit-peptide-quote,
#submit-antibody-quote,
#submit-protein-quote,
#ab-submit-campaign-quote,
#rec-sub,
.btn-accent,
.wizard-btn-submit,
.bm-quote-submit {
  background: #e67e22 !important;
  color: #ffffff !important;
  border-color: #e67e22 !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  padding: 1rem 2.5rem !important;
}

/* Lighter placeholder text */
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #888888 !important;
  opacity: 1;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #888888 !important;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #888888 !important;
}
