﻿@charset "utf-8";
/* =========================================================
   Password-Recovery_2025A.css (Scoped)
   Depends on: desktop_layout_2025.css / mobile_layout_2025.css
   Version: 2026-01-02
   Namespace: recovery__*
========================================================= */

.recovery--page .float_right_out{
  padding: 22px;
}

/* Unified container: align hero + notice + card */
.recovery--page .recovery__container{
  max-width: 760px;
  margin: 0;
}

@media screen and (min-width:1200px){
  .recovery--page .recovery__container{
    margin-left: 18px;
  }
  .recovery--page .float_right_out{ padding: 26px 26px 30px 26px; }
}

/* ------------------------------
   Hero
------------------------------ */
.recovery--page .recovery__hero{
  padding: 16px 18px 10px 18px;
}

.recovery--page .recovery__title{
  margin: 0 0 10px 0;
  font-size: 30px;
  line-height: 1.15;
  color: #003b73;
  letter-spacing: 0.2px;
}

.recovery--page .recovery__lead{
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #1a1a1a;
  opacity: 0.92;
}

/* ------------------------------
   Notice
------------------------------ */
.recovery--page .recovery__notice{
  margin: 12px 0 16px 0;
  padding: 14px 16px;
  border: 1px solid #bcd2ff;
  background: rgba(245, 248, 255, 0.92);
  border-radius: 12px;
}

.recovery--page .recovery__list{
  margin: 0;
  padding-left: 18px;
}

.recovery--page .recovery__list li{
  margin: 6px 0;
  color: #0b2f55;
  font-size: 14px;
  line-height: 1.55;
}

/* ------------------------------
   Card + Form
------------------------------ */
.recovery--page .recovery__card{
  margin: 0 0 18px 0;
  background: rgba(255,255,255,0.98);
  border: 1px solid #d6d6d6;
  border-radius: 14px;
  padding: 18px 18px 16px 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}

@media screen and (min-width:1200px){
  .recovery--page .recovery__card{
    padding: 20px 20px 18px 20px;
  }
}

.recovery--page .recovery__form{ margin: 0; }

.recovery--page .recovery__grid{
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 12px 14px;
  align-items: start;
}

.recovery--page .recovery__label{
  color: #003b73;
  font-size: 14px;
  line-height: 1.3;
  margin-top: 10px;
}

.recovery--page .recovery__field{
  min-width: 0;
}

.recovery--page .recovery__input{
  width: 100%;
  max-width: 420px;
  padding: 10px 11px;
  border: 1px solid #2b2b2b;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.2;
  background: #fff;
}

.recovery--page .recovery__input:focus{
  outline: none;
  border-color: #ff9900;
  box-shadow: 0 0 0 3px rgba(255,153,0,0.25);
}

.recovery--page .recovery__input--vcode{
  max-width: 140px;
  text-align: center;
}

/* Verification code row */
.recovery--page .recovery__vcodeRow{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.recovery--page .recovery__vcodeShow{
  background: #d8d8d8;
  color: #8b0000;
  border: 1px solid #000;
  width: 66px;
  padding: 10px 8px;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  border-radius: 8px;
  user-select: none;
}

.recovery--page .recovery__hint{
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: #2b2b2b;
  opacity: 0.9;
}

/* ------------------------------
   Actions / Buttons
------------------------------ */
.recovery--page .recovery__actions{
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.recovery--page .recovery__btn{
  display: inline-block;
  padding: 10px 16px;
  border-radius: 12px;
  border: 2px solid #007A29;
  background: #007A29;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.08s ease, filter 0.18s ease, background 0.18s ease;
}

.recovery--page .recovery__btn:hover{ filter: brightness(1.05); }
.recovery--page .recovery__btn:active{ transform: translateY(1px); }

.recovery--page .recovery__btn--outline{
  background: #fff;
  color: #007A29;
}

.recovery--page .recovery__btn--outline:hover{
  background: rgba(0,122,41,0.06);
}

/* ------------------------------
   Info block (fills space, reduces anxiety)
------------------------------ */
.recovery--page .recovery__info{
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(0,64,128,0.22);
  background: rgba(255,255,255,0.78);
  border-radius: 12px;
}

.recovery--page .recovery__infoTitle{
  font-size: 14px;
  font-weight: bold;
  color: #003b73;
  margin: 0 0 8px 0;
}

.recovery--page .recovery__infoTitle--mt{
  margin-top: 12px;
}

.recovery--page .recovery__infoList{
  margin: 0;
  padding-left: 18px;
}

.recovery--page .recovery__infoList li{
  margin: 6px 0;
  font-size: 13px;
  line-height: 1.55;
  color: #0b2f55;
}

.recovery--page .recovery__info a{
  color: #003b73;
  text-decoration: underline;
}
.recovery--page .recovery__info a:hover{
  color: #ff9900;
}

/* Accessibility focus */
.recovery--page .recovery__btn:focus-visible,
.recovery--page a:focus-visible,
.recovery--page input:focus-visible{
  outline: 3px solid #FF9900;
  outline-offset: 3px;
}

/* ------------------------------
   Mobile refinements
------------------------------ */
@media screen and (max-width:640px){
  .recovery--page .recovery__hero{ padding: 14px 12px 10px 12px; }
  .recovery--page .recovery__title{ font-size: 24px; }

  .recovery--page .recovery__notice,
  .recovery--page .recovery__card{
    margin-left: 12px;
    margin-right: 12px;
  }

  .recovery--page .recovery__grid{
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .recovery--page .recovery__input{ max-width: 100%; }

  .recovery--page .recovery__actions{ gap: 10px; }
  .recovery--page .recovery__btn{ width: 100%; text-align: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .recovery--page *{
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
