/* --- Centering shell for auth pages --- */
.pr-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 16px;
}

/* Card */
.pr-box {
  background: #fff;
  padding: 2.5rem;
  max-width: 560px;         /* a bit wider, tweak if you prefer 420px */
  width: 100%;
  border-radius: 10px;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.08);
  box-sizing: border-box;
  font-family: inherit;
}

/* Title */
.pr-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

/* Form layout */
.pr-form {
  display: flex;
  flex-direction: column;
  gap: 14px;                /* modern spacing if you add class="pr-form" to <form> */
}

.pr-group {
  display: block;
  margin-bottom: 1rem;      /* ensures space above the button without <br> */
}

.pr-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.pr-group input[type="email"],
.pr-group input[type="password"] {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #cfd2d6;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
}

.pr-group input:focus {
  border-color: #476DB0;
  box-shadow: 0 0 0 3px rgba(71,109,176,0.15);
}

/* Buttons */
.pr-btn {
  display: inline-block;    /* no more full-width */
  background: #476DB0;
  color: #fff;
  padding: 12px 18px;
  border: 1px solid #476DB0;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  width: auto;              /* keep natural width */
}

.pr-btn:hover { background: #365A96; border-color: #365A96; }

/* Optional helper if you want a full-width button in a specific form */
.pr-btn-block { display: block; width: 100%; }

/* Text */
.pr-text, .pr-note {
  margin-top: 14px;
  font-size: 14px;
  text-align: center;
}
