
/* Frontend UX: clean, accessible */
.ccm-form, .ccm-locked, .ccm-message, .ccm-error {
  border: 1px solid #e5e7eb;
  padding: 16px;
  border-radius: 10px;
  margin: 16px 0;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.ccm-form h3 { margin: 0 0 12px; font-size: 1.1rem; }
.ccm-form input[type="text"],
.ccm-form input[type="email"],
.ccm-form input[type="password"],
.ccm-form select {
  width: 100%;
  max-width: 440px;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  outline: none;
}
.ccm-form input:focus, .ccm-form select:focus {
  border-color: #111827; /* why: visible focus for a11y */
  box-shadow: 0 0 0 3px rgba(17,24,39,.1);
}
.ccm-button {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  background: #111827;
  color: #fff !important;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
.ccm-error ul { margin: 0; padding-left: 18px; }
