/* Container card */
.pc-card {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Headings */
.pc-card-title {
  margin-top: 0;
  font-size: 1.5rem;
  text-align: center;
}

.pc-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Grid for login/register side by side */
.pc-auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.pc-auth-box {
  background: #fff;
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Form elements */
.pc-form label {
  display: block;
  margin: 0.5rem 0 0.25rem;
  font-weight: 500;
}

.pc-form input,
.pc-form select {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.pc-form input:focus,
.pc-form select:focus {
  border-color: #0073aa;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,115,170,0.2);
}

/* Buttons */
.pc-form .button {
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
}

.pc-form .button:hover {
  background: #005f8d;
}

/* Notes and alerts */
.pc-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
}

.pc-alert {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.pc-alert-error {
  background: #fdecea;
  color: #b71c1c;
  border: 1px solid #f5c6cb;
}

.pc-alert-success {
  background: #e6f4ea;
  color: #256029;
  border: 1px solid #c3e6cb;
}