/* Account recovery pages — fall meadow background (same as registration) + PHR form card */
@font-face {
  font-family: 'Pristina';
  src: url('/ph-site/assets/pristina-webfont.woff2') format('woff2'),
       url('/ph-site/assets/pristina-webfont.woff') format('woff'),
       url('/ph-site/assets/PRISTINA.ttf') format('truetype');
  font-display: swap;
}
 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
html {
  background-color: #000;
  background-image: url('/franchise/fairies/pixie-hollow/img/themes/default/fall.jpg');
  background-position: center 0;
  background-repeat: no-repeat;
  min-height: 100%;
}
 
body {
  min-height: 100vh;
  font-family: 'Helvetica Rounded', 'Arial Rounded MT Bold', 'Trebuchet MS', Verdana, sans-serif;
  color: #fff;
}
 
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
 
.page {
  max-width: 994px;
  margin: 0 auto;
  position: relative;
  padding: 60px 12px 40px;
  min-height: calc(100vh - 24px);
  min-height: calc(100dvh - 24px);
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}
 
.site-header {
  text-align: center;
  padding-top: 8px;
  position: relative;
  z-index: 10;
}
 
.site-header a {
  display: inline-block;
  pointer-events: auto;
}
 
.site-header img {
  width: 420px;
  max-width: 88%;
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
}
 
.back-link {
  display: inline-block;
  margin: 10px 0 0 20px;
  position: relative;
  z-index: 20;
  pointer-events: auto;
}
 
.back-link img {
  width: 200px;
  max-width: 42vw;
  display: block;
  transition: filter 0.2s ease-in-out;
}
 
.back-link:hover img {
  filter: brightness(1.15) drop-shadow(0 0 6px rgba(174, 243, 100, 1)) drop-shadow(0 0 14px rgba(174, 243, 100, 0.8));
}
 
.inner-main {
  margin-top: 24px;
  padding: 0 16px;
}
 
.content-card {
  position: relative;
  width: 92%;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}
 
.content-card-bg {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
 
.content-card-inner {
  position: absolute;
  top: 24%;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 82%;
  max-width: 420px;
}
 
.content-card h1 {
  font-family: 'Pristina', cursive;
  font-weight: normal;
  font-size: 34px;
  color: #ffe94d;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  margin-top: 20px;
  margin-bottom: 12px;
  text-align: center;
}
 
.content-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #fff;
  margin-bottom: 12px;
}
 
.content-card p.hint {
  font-size: 11px;
  color: #999;
}
 
.content-card label {
  display: block;
  margin: 14px 0 6px;
  font-weight: bold;
  color: #f5f8ff;
}
 
.content-card input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #3d4f73;
  border-radius: 6px;
  background: #0b1528;
  color: #f5f8ff;
  font-family: inherit;
  font-size: 14px;
}
 
.content-card input:focus {
  outline: none;
  border-color: #6fa3bf;
  box-shadow: 0 0 0 2px rgba(111, 163, 191, 0.25);
}
 
.content-card button {
  display: block;
  margin: 18px auto 0;
  padding: 10px 20px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(to bottom, #ff6fa8 0%, #e8447f 100%);
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: filter 0.15s ease;
}
 
.content-card button:hover {
  filter: brightness(1.1);
}
 
.content-card .links {
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
}
 
.content-card .links a {
  color: #ffe94d;
  font-weight: bold;
  text-decoration: none;
}
 
.content-card .links a:hover {
  color: #fff7c4;
  text-decoration: underline;
}
 
.content-card .status {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 6px;
  display: none;
  font-size: 14px;
  line-height: 1.5;
}
 
.content-card .status.ok {
  display: block;
  background: rgba(23, 58, 45, 0.85);
  border: 1px solid #2f8f67;
  color: #b8f0d0;
}
 
.content-card .status.err {
  display: block;
  background: rgba(58, 23, 23, 0.85);
  border: 1px solid #b24f4f;
  color: #ffc8c8;
}
 
.reveal-panel {
  margin-top: 8px;
  padding: 16px;
  background: rgba(11, 21, 40, 0.6);
  border: 1px solid #3d4f73;
  border-radius: 8px;
  text-align: center;
}
 
.account-id-reveal {
  font-size: 26px;
  font-weight: bold;
  color: #9fd3ff;
  margin: 8px 0 0;
  letter-spacing: 0.5px;
}
 
.petals-row {
  width: 100%;
  max-width: 952px;
  margin: 36px auto 0;
  position: relative;
  z-index: 1;
  opacity: 0.85;
}
 
.petals-row img {
  width: 100%;
  display: block;
}
 
@media (max-width: 600px) {
  .content-card {
    width: 96%;
  }
 
  .content-card-inner {
    top: 24%;
    width: 88%;
    max-width: 420px;
  }
 
  .content-card h1 {
    font-size: 28px;
  }
}
 
