/* main.css - Button and form component overrides */

/* btn-primary and btn-secondary are defined in platform-theme.css */

.btn-ghost,
.btn-danger {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-control);
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.btn-ghost {
  background: transparent;
  color: #4B5563;
}
.btn-ghost:hover {
  background: #F3F4F6;
  color: #111827;
}

.btn-danger {
  background: #EF4444;
  color: white;
}
.btn-danger:hover {
  background: #DC2626;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-primary.w-full,
.btn-secondary.w-full,
.btn-ghost.w-full,
.btn-danger.w-full {
  width: 100%;
  text-align: center;
}

/* .account-status-* and .account-form-* live in platform-theme.css (editorial versions) */

.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-control);
  font-size: 1rem;
  transition: all 0.2s ease;
}
.form-input:focus {
  outline: none;
  border-color: var(--aerial-blue-light);
  box-shadow: 0 0 0 3px rgba(58, 158, 143, 0.1);
}
.form-input.error {
  border-color: #EF4444;
}

.form-help {
  font-size: 0.75rem;
  color: #6B7280;
  margin-top: 0.25rem;
}

.form-error {
  font-size: 0.75rem;
  color: #EF4444;
  margin-top: 0.25rem;
}

/*# sourceMappingURL=main.css.map */
