/* ── 비밀번호 확인 페이지 ── */
.hm-pw-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;        /* 수직 중앙 정렬 */
    padding: 48px 24px 32px;
    max-width: 550px;               /* 사이트 max-width 맞춤 */
    width: 100%;
    min-height: 100dvh;             /* 모바일 브라우저 주소창 고려 */
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
}

.hm-pw-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color, #ff6400);
    margin-bottom: 16px;
}

.hm-pw-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.hm-pw-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 28px !important;
}

.hm-pw-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hm-pw-input-wrap {
    position: relative;
    width: 100%;
}

.hm-pw-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    font-size: 15px;
}

.hm-pw-input {
    width: 100%;
    padding: 13px 16px 13px 40px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}

.hm-pw-input:focus {
    border-color: var(--primary-color, #ff6400);
}

.hm-pw-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary-color, #ff6400);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

.hm-pw-submit:active {
    opacity: 0.85;
}

.hm-pw-back {
    margin-top: 20px;
    font-size: 13px;
    color: #aaa;
    text-decoration: none;
}

.hm-pw-back:hover {
    color: #666;
}