:root {
  --brand: #2f9ce5;
  --brand-dark: #2286c9;
  --bg: #f4f9ff;
  --text-muted: #51606f;
}

body {
  background: var(--bg);
  min-height: 100vh;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.ps-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.ps-card {
  width: 100%;
  max-width: 420px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background: #fff;
}

.ps-header {
  text-align: center;
  padding: 20px 20px 10px;
}

.ps-logo2 {
  width: 220px;
  max-width: 80%;
  margin: 0 auto 10px;
  display: block;
}

.ps-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.ps-body {
  padding: 18px;
}

.ps-foot {
  text-align: center;
  padding: 0 18px 18px;
  color: #667;
  font-size: 0.9rem;
}

.form-control {
  border-radius: 12px;
  padding: 12px;
}

.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  border-radius: 12px;
}

.btn-brand:hover,
.btn-brand:focus {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.ps-link {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.ps-link:hover {
  text-decoration: underline;
}
