/* טופס בקשת מידע אישי / מחיקה */
.scccc-privacy-form-wrapper {
  max-width: 600px;
  margin: 30px auto;
  /* padding: 30px; */
  background: #fff;
  /* border: 1px solid #e5e7eb; */
  border-radius: 12px;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.08); */
}

.scccc-form-title {
  margin: 0 0 15px;
  font-size: 24px;
  font-weight: 600;
  color: #111827;
  text-align: center;
}

.scccc-form-description {
  /* margin: 0 0 25px; */
  font-size: 16px;
  /* line-height: 1.6; */
  /* color: #6b7280; */
  /* text-align: center; */
}

.scccc-form-field {
  margin-bottom: 20px;
  width: 48%;
}

.scccc-form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #374151;
}

.scccc-checkbox-field label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  cursor: pointer;
}

.scccc-checkbox-field input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.scccc-checkbox-field span {
  font-weight: normal;
  font-size: 14px;
  line-height: 1.5;
}

.scccc-checkbox-field a {
  color: #2563eb;
  text-decoration: underline;
}

.scccc-checkbox-field a:hover {
  color: #1d4ed8;
}

.scccc-submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: #111827;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.scccc-submit-btn:hover {
  background: #1f2937;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.scccc-submit-btn:active {
  transform: translateY(0);
}

.scccc-submit-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

.scccc-form-messages {
  margin-top: 20px;
}

.scccc-message {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.scccc-message.scccc-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
}

.scccc-message.scccc-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
}

/* Responsive */
@media (max-width: 600px) {
  .scccc-privacy-form-wrapper {
    /* padding: 20px; */
    margin: 20px 10px;
  }
  .scccc-form-field {
    width: 100%;
  }
  
  .scccc-form-title {
    font-size: 20px;
  }
}

