/* AB506 app-specific styles. Shared chrome (masthead, beta banner, buttons,
   auth screen, tokens) lives in theme.css -- see root CLAUDE.md's
   "Per-app config patterns". */

.container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  min-height: 400px;
}

.content {
  padding: 30px;
}

.form-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
  margin-top: 20px;
}

.form-card h2 {
  color: #333;
  font-size: 22px;
  margin-bottom: 10px;
}

.ab506-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
}

.ab506-on-file {
  background: #d4edda;
  color: #155724;
}

.ab506-missing {
  background: #f8d7da;
  color: #721c24;
}

.certificate-link {
  display: inline-block;
  margin: 12px 0;
}

.upload-label {
  margin-top: 20px;
  font-weight: 600;
}

.file-hint {
  color: #666;
  font-size: 13px;
  margin-top: 6px;
}

.form-actions {
  margin-top: 15px;
}

.btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

.error-message {
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 20px;
  font-weight: 500;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.success-message {
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 20px;
  font-weight: 500;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
