.scv-card {
  max-width: 480px;
  margin: 1.5rem auto;
  padding: 1.5rem;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.3);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.scv-card--verified {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  background: transparent;
}

.scv-title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.scv-field {
  margin-bottom: 1rem;
}

.scv-field label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.scv-field input[type="text"],
.scv-field input[type="email"] {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  border: 1px solid #cbd5f5;
  font-size: 0.95rem;
}

.scv-field input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px #3b82f6;
}

.scv-required {
  color: #dc2626;
}

.scv-button {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: #2563eb;
  color: #ffffff;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.scv-button:hover,
.scv-button:focus {
  background: #1d4ed8;
}

.scv-result {
  margin-top: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 4px;
  font-size: 0.9rem;
  display: none;
}

.scv-result--success {
  display: block;
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #4ade80;
}

.scv-result--warning {
  display: block;
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #facc15;
}

.scv-result--error {
  display: block;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
}

.scv-verified-content {
  display: none;
  width: 100%;
  max-width: none;
  margin-top: 1rem;
  padding: 0;
  box-sizing: border-box;
  background: transparent;
  border: none;
}

.scv-verified-content > :first-child {
  margin-top: 0;
}

.scv-verified-content > :last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .scv-card {
    margin: 1rem;
    padding: 1.25rem;
  }
}
.scv-description {
  margin-top: -0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.scv-card--verified {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  background: transparent;
}

.scv-card--verified .scv-verified-content {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-sizing: border-box;
}