/* パスワード変更 - password-change.css */
.header-password-change-inner {
  background: linear-gradient(90deg, #ffe2cf 10%, #fb5f00 65%);
  box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}
.header-password-change-top .header-phone { color: #fff; }
.header-password-change-top .btn-login,
.header-password-change-top .btn-cart-nav {
  background: #000;
  color: #fff;
  padding: 7px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 17px;
}
.main-nav-password-change { background: #fff; border-bottom: 1px solid #ddd; }
.nav-list-password-change .nav-item a.active { border-bottom: 4px solid #fb5f00; }

.password-change-main {
  padding: 60px 0 80px;
  background: #fff;
  min-height: 60vh;
}
.password-change-title {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  color: #1e1e1e;
  margin: 0 0 16px;
}
.password-change-intro {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 32px;
}

.password-change-form-wrap {
  max-width: 600px;
  margin: 0 auto;
}
.password-change-form {
  background: rgba(126,126,126,0.08);
  padding: 32px;
  border-radius: 8px;
}
.password-change-form .form-row {
  margin-bottom: 24px;
}
.password-change-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #3c3c3c;
  margin-bottom: 8px;
}
.password-change-form .required { color: #3c3c3c; }
.password-change-form input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
  font-size: 15px;
  font-family: inherit;
}
.code-wrap {
  display: flex;
  gap: 8px;
}
.code-wrap input { flex: 1; }
.btn-get-code {
  background: #fb5f00;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}
.btn-get-code:hover { opacity: 0.9; }
.password-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
  overflow: hidden;
}
.password-wrap input {
  flex: 1 1 0;
  min-width: 0;
  width: 0;
  border: none !important;
  border-radius: 0 !important;
  padding-right: 4px;
}
.btn-toggle-password {
  flex: 0 0 48px;
  width: 48px;
  min-height: 42px;
  background: transparent;
  border: none;
  border-left: 1px solid #eee;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: color 0.2s ease;
  position: relative;
}
.btn-toggle-password:hover {
  color: #fb5f00;
}
.btn-toggle-password:focus {
  outline: none;
}
.btn-toggle-password:focus-visible {
  outline: 2px solid #fb5f00;
  outline-offset: -2px;
}
.btn-password-change-submit {
  width: 100%;
  background: #fb5f00;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 99px;
  cursor: pointer;
  margin-top: 16px;
}
/* 密码隐藏时显示睁眼图标，密码显示时显示划掉眼睛图标 */
.password-wrap .icon-password-hide,
.password-wrap .icon-password-show {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
}
.password-wrap .icon-password-show {
  visibility: hidden;
  pointer-events: none;
}
.password-wrap.is-visible .icon-password-hide {
  visibility: hidden;
  pointer-events: none;
}
.password-wrap.is-visible .icon-password-show {
  visibility: visible;
  pointer-events: auto;
}
.btn-toggle-password svg {
  width: 22px;
  height: 22px;
  display: block;
}

.btn-register-submit {
  width: 100%;
  background: #fb5f00;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 99px;
  cursor: pointer;
  margin-top: 16px;
}
.btn-register-submit:hover { opacity: 0.9; }
