.password-find-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.password-find-modal.is-active {
    display: block;
}

.password-find-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.password-find-modal__dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 420px;
    max-width: calc(100% - 32px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 18px;
    padding: 34px 28px 28px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.password-find-modal__close {
    position: absolute;
    right: 18px;
    top: 14px;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    color: #999;
    cursor: pointer;
}

.password-find-modal__icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #eef6ff;
    color: #0072ce;
    font-size: 30px;
    font-weight: 700;
    line-height: 58px;
}

.password-find-modal__title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #111;
}

.password-find-modal__desc {
    margin: 12px 0 14px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.password-find-modal__notice {
    margin: 0;
    padding: 14px;
    border-radius: 12px;
    background: #f7fbff;
    border: 1px solid #d9e9f8;
    font-size: 14px;
    line-height: 1.5;
    color: #0072ce;
}

.password-find-modal__actions {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.password-find-modal__btn {
    flex: 1;
    height: 48px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 48px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
}

.password-find-modal__btn--primary {
    border: 1px solid #0072ce;
    background: #0072ce;
    color: #fff;
}

.password-find-modal__btn--line {
    border: 1px solid #c8dff3;
    background: #fff;
    color: #0072ce;
}

body.password-find-modal-open {
    overflow: hidden;
}

@media (max-width: 480px) {
    .password-find-modal__dialog {
        width: calc(100% - 28px);
        padding: 32px 20px 22px;
        border-radius: 16px;
    }

    .password-find-modal__title {
        font-size: 21px;
    }

    .password-find-modal__desc {
        font-size: 14px;
    }

    .password-find-modal__actions {
        flex-direction: column;
    }

    .password-find-modal__btn {
        width: 100%;
    }
}