body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

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

.ps-login-card {
  width: 100%;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  padding: 42px 32px;
}

.ps-login-heading {
  text-align: center;
  margin-bottom: 32px;
}

.ps-eyebrow {
  font-size: 12px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 12px;
}

.ps-login-title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
}

.ps-alert {
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 12px;
  font-size: 14px;
}

.ps-alert-error {
  background: #ffe5e5;
  color: #9b1d1d;
}

.ps-alert-success {
  background: #e7f7e8;
  color: #1a6a2d;
}

.ps-social-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #111;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.social-google {
  border-color: #d6d6d6;
}

.social-facebook {
  border-color: #3754a0;
  color: #3754a0;
}

.ps-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 24px 0;
  color: #8a8a8a;
  font-size: 12px;
}

.ps-divider::before,
.ps-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #d9d9d9;
}

.ps-form {
  display: grid;
  gap: 16px;
}

.ps-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 8px;
}

.ps-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #dcdcdc;
  padding: 14px 16px;
  font-size: 14px;
  color: #111;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease;
}

.ps-input:focus {
  border-color: #111;
}

.ps-checkbox-row,
.ps-consent-list {
  display: grid;
  gap: 12px;
}

.ps-checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #333;
}

.ps-checkbox-field input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.login-btn {
  width: 100%;
  border: none;
  background: #111;
  color: #fff;
  border-radius: 12px;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.login-btn:hover {
  background: #000;
}

.ps-terms {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #666;
}

.ps-link-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  color: #444;
}

.ps-text-link {
  color: #111;
  text-decoration: none;
  font-weight: 700;
}

.ps-resend-note {
  margin-top: 12px;
  font-size: 13px;
  color: #777;
  text-align: center;
}

@media (max-width: 520px) {
  .ps-login-card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .ps-social-buttons {
    grid-template-columns: 1fr;
  }
}